c# 用不了FormsAuthentication 已经加入了命名空间using System.Web.Security;

就是对textbox进行MD5加密,怎么不行了??求大神指点??提示找不到FormsAuthentication
string password = FormsAuthentication.HashPasswordForStoringInConfigFile(textBox5.Text, "MD5");

需要引用 using System.Web.Security;
以及 using system.web;
可以右键 FormsAuthentication 解析,会自动更正的。

看看能不能不引用,直接
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(textBox5.Text, "MD5");

如果还不行,就清理解决方案,全部重新生成。

请采纳,谢谢。
温馨提示:内容为网友见解,仅供参考
无其他回答

c# 错误 应输入类型、命名空间定义或文件尾
最后一个LogonButton_Click事件的else的if呢?你应该自己先检查一下。好像你那个注释后面的if就是,我改了一下,看对不对:public class LogonModule : ModuleBase { private void Page_Load(object sender, System.EventArgs e){ \/\/如果用户身份已验证成功 if (HttpContext.Current.User.Identity.Is...

c#怎样实现 文本文件加密解密?
1 下载安装超级加密3000。2 然后在需要加密的文件上单击鼠标右键选择加密。3 在弹出的文件加密窗口中设置文件加密密码就OK了。超级加密3000的下载地址你可以在百度上搜索超级加密3000,第一个就是。

关于C# DES加密时密钥问题
为了增加安全性,在第二种方法中,配置文件中保存的不是key和iv的明文,而是用md5加密后的key和iv。这样,即使你的程序发布出去,别人也无法知道程序中真正使用的key和iv是什么,增加了安全性。System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8)的...

C# WINFORM安装后的项目 文件夹里有连接字符串的配置文件 请问要怎么请...
des.IV = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));System.IO.MemoryStream ms=new System.IO.MemoryStream();CryptoStream cs=new CryptoStream(ms,des.CreateEncryptor(),CryptoStreamMode.Write);cs.Write...

C#中怎样对输入的用户密码进行MD5加密,再与数据库中的经过加密的密码进...
当需要再次验证用户输入的密码是否正确时,你先在C#程序中把用户输入的密码转换成MD5加密后的格式,再和数据库中读出来的比较。在C#中,这样转换字符串:string oldPsw="123";string newPsw= System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(oldPsw, "MD5");得到的newPsw即是...

求VB.NET的MD5算法调用
下面是完整的类,可以设置任意密码 'DES及md5加密解密---添加引用中添加对system.web的引用。Imports System.Security.CryptographyImports SystemImports System.TextImports System.Web''' ''' DES加密类''' ''' <remarks><\/remarks>Public Class DESEncrypt Public Sub DESEncrypt() End Sub ...

asp.net基于FORM验证的登陆代码
导入命名空间 using System.Web.Security;实现功能:如果用户直接来到登陆界面,登陆成功后跳到首页;如果不是直接来的,则 跳到原来的页面。FormsAuthentication.RedirectFromLoginPage(UserName , RadioButton1.Checked);if(Request["ReturnUrl"]==null || Request["ReturnUrl"]==""){ Response.Redirect(...

asp.net1.0(C#)用户登录界面问题
if(login > 0){ Session["admin"] = this.TextBox1.Text ;System.Web.Security.FormsAuthentication.RedirectFromLoginPage(this.TextBox1.Text,false);} else { this.lbLogin.Text= "用户名或密码不正确" ;this.lbLogin.Visible = true;} } 另外注意命名的规范,数据库字段名最好不要用中文 ...

如何获取authentication中的forms里的timeout值
命名空间: System.Web.Configuration 程序集: System.Web(在 System.Web.dll 中)语法 C C++ F VB [ConfigurationPropertyAttribute("timeout", DefaultValue = "00:30:00")][TimeSpanValidatorAttribute(MinValueString = "00:01:00", MaxValueString = "10675199.02:48:05.4775807")][...

如何为magento 设置 cookieless domain
FormsAuthentication类 FormsAuthentication类用于辅助我们完成窗体验证,并进一步完成用户登录等功能。该类位于system.web.dll程序集的System.Web.Security命名空间中。通常在Web站点项目中可以直接使用这个类,如果是在类库项目中使用这个类,请确保引用了system.web.dll。 前一节已经介绍了FormsAuthentication类的所有属性。这一...

相似回答