上一页 1 ··· 3 4 5 6 7

2011年11月14日

ASP.NET的身份验证方式有哪些

摘要: [Forms 身份验证] 通过其可将没有通过身份验证的请求重定向到使用 HTTP 客户端重定向的 HTML 窗体的系统。用户提供凭据并提交该窗体。如果应用程序验证该请求,系统就会发出包含凭据或密钥的 Cookie 以重新获取该标识。后续的请求在请求标题中随 Cookie 一起发出,ASP.NET 事件处理程序会使用应用程序开发人员指定的任何验证方法去验证请求并给其授权。 [Passport 身份验证] 由 Microsoft 提供的集中身份验证服务,用于为成员站点提供单一登录和核心配置服务。 [Windows 身份验证] ASP.NET 会结合 Internet 信息服务 (IIS) 身份验证 阅读全文

posted @ 2011-11-14 11:49 zg_heng 阅读(1024) 评论(0) 推荐(0) 编辑

帮助链接收集

摘要: WCF详解:http://www.cnblogs.com/artech/archive/2007/02/26/656901.html系统操作日志:http://www.cnblogs.com/samlin/archive/2010/02/08/Log-Operation-Management.htmlasp.net插入播放flash视频:http://feilong.org/asp-net-insert-flash-swf-flv 阅读全文

posted @ 2011-11-14 11:48 zg_heng 阅读(101) 评论(0) 推荐(0) 编辑

去除字符串中的重复项

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 倒序{ class Program { public static string Get(string str) { String[] s = str.Split(new char[] { ';' }); List<string> list = new List<string>(); foreach (string a in s) { if (!list.Contains( 阅读全文

posted @ 2011-11-14 11:47 zg_heng 阅读(241) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7

导航