ASP.NET(C#)里默认带有MD5函数不?
ASP的时候是自己编写一个MD5函数,默认没有这个函数。ASP.NET自带了吗?
不可能 System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string","MD5"); 带!!!!!!我来了!虎年快乐! 有…楼上已经给出来了。 二楼的是ASP.NET,符合楼主的要求。 扩展一下:System.Security.Cryptography.MD5CryptoServiceProvider 飘逸2010 有的 string s= System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("", "MD5"); 引用 System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string","MD5"); 这个就是了 .net带有专门的加密类,包括有md5引用 System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string","MD5"); 。 自带啊,如楼上 System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string","MD5"); 这个就可以了 自带的!直接使用 恩,的确有自带的MD5加密 学习,飘过。 有自带的·直接使用引用 System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string","MD5"); 这个 {{----
相关问答:
select top 12 * from Product where [id] not in (select top 12 [id] from Product) 这样可以分页,但是我在后面想加个条件 select top 12 * from Product where [id] not in (select top 12 [id] from Prod ......
最近在做个网上商城,购物车模块,没有做过,麻烦各位帮忙说下大致说下思路,能发一份源码更好。小弟先谢过各位了; QQ:413763818; eamil:swebook@126.com 网上一大堆! www.51aspx.com 去下 ......
function CheckOpwd(){//验证用户名 var pwd=document.all.txtOpwd; var div1=document.getElementById("divPwd"); if (pwd.value=="") { ......
我创建了一个物品浏览页面:bookview.aspx,其中在页面的左侧列出物品的分类:分类1,连接到页面bookview.aspx?id=1,其他依次类推,当页面第一次加载的时候设置id的默认值为1,运行程序发现页面一直出于重新加 ......