码迷,mamicode.com
首页 >  
搜索关键字:forms    ( 2772个结果
ASP.NET --Form身份验证
本文收集自----MSDN一:Forms 身份验证流程在 Forms 身份验证方案中,应用程序直接从用户那里收集名字和密码等凭据,并自己判断这些信息的真实性。应用程序不使用 IIS 身份验证,但 IIS 身份验证设置可以影响 Forms 身份验证。作为一项原则,当您使用 Forms 身份验证时,请在...
分类:Web程序   时间:2014-06-28 21:43:54    阅读次数:290
C#中利用委托实现多线程跨线程操作
在使用VS2005的时候,如果你从非创建这个控件的线程中访问这个控件或者操作这个控件的话就会抛出这个异常。这是微软为了保证线程安全以及提高代码的效率所做的改进,但是也给大家带来很多不便。其实解决这个问题有两种方法:一,是通过设置System.Windows.Forms.Control.CheckFo...
分类:编程语言   时间:2014-06-19 08:10:17    阅读次数:274
C#限制程序只能运行一個实例 (防多开)
//方法一:只禁止多个进程运行using System;using System.Collections.Generic;using System.Windows.Forms;namespace DuoYeMianIE{ static class Program { ///...
分类:其他好文   时间:2014-06-18 23:22:13    阅读次数:216
delphi 中 as 和 is 的使用
unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, StdCtrls;typeTForm1 = class(TForm) Edit1: T...
分类:其他好文   时间:2014-06-18 19:14:44    阅读次数:169
《ASP.NET1200例》C#在网页上编写动态时钟
包含Timer类的命名空间有3个TimerClass (System.Threading)?TimerClass (System.Windows.Forms)?一般用于窗体程序TimerClass (System.Timers)? 一般用于控制台程序using System;using System...
分类:Web程序   时间:2014-06-17 19:54:38    阅读次数:212
C# TreeView 树节点:递归显示整个系统盘符文件目录及文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;namespace Demo{/// /// 有关...
分类:其他好文   时间:2014-06-17 13:50:08    阅读次数:709
c# Ftp下载程序源码解析
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Sy...
分类:其他好文   时间:2014-06-16 14:22:40    阅读次数:281
.net 身份验证方式有哪些及原理
Asp.net的身份验证有有三种,分别是"Windows | Forms | Passport",其中又以Forms验证用的最多,也最灵活。       Windows: 使用IIS验证方式       Forms: 使用基于窗体的验证方式       Passport: 采用Passport cookie验证模式       None: 不采用任何验证方式 1、...
分类:Web程序   时间:2014-06-10 08:10:27    阅读次数:657
CSVHelper 导出CSV 格式
public class CSVHelper { System.Windows.Forms.SaveFileDialog saveFileDialog1;//保存 private string header = string.Empty;//标题 //...
分类:其他好文   时间:2014-06-09 19:17:52    阅读次数:322
How JSP work.
A JSP page exists in three forms:JSP source code:consists of a mix of HTML template code.Java language statements.JSP directives and actions that desc...
分类:Web程序   时间:2014-06-08 00:18:41    阅读次数:523
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!