摘要: 背景: ASP.NET的用户验证方法,及加密处理在网上搜罗了一下,搜到很多雷同文章,摘引如下:public static string MD5(string Sourcein) { MD5CryptoServiceProvider MD5CSP = new MD5CryptoServiceProvider(); byte[] MD5Source = System.Text.Encoding.UT... 阅读全文
posted @ 2009-12-30 10:00 一修先生 阅读(3664) 评论(12) 推荐(3)
摘要: 昨天学习ASP.NET,做到用户登陆,知道用户验证方法有三种:  Windows验证  Form验证  Passport(windows live ID)验证当然一般应用的都是Form验证,至于Passport(windows live ID)验证具体是什么方法,您可以Google一下,应该可以得到比较详细的解答。Form验证,我们可以修改web.config文件实现,如下:[代码]在creden... 阅读全文
posted @ 2009-12-30 09:20 一修先生 阅读(921) 评论(0) 推荐(0)