使用vb在asp.net中使用FormAuthentication

时间:2017-06-14 08:46:58

标签: asp.net vb.net forms-authentication

我在asp.net应用程序中很新,在vb中有点生疏。无论如何,我想创建一个带有表单身份验证的Web应用程序,我在验证方法时遇到了问题 web.config文件:

<authentication>
  <forms loginUrl="LoginForm.aspx">
     <credentials passwordFormat="Clear">
       <user name="Aaa" password="123"/>
     </credentials>
  </forms>
</authentication>
<authorization>
  <deny users="?"/>
</authorization>

登录表单(On Button1_Click事件):

If (FormsAuthentication.Authenticate(TextBox1.Text, TextBox2.Text)) Then
  FormsAuthentication.RedirectFromLoginPage(TextBox1.Text, True)
Else
  Label1.Text = "Invalid Crets"
End If
End

我的问题是FormsAuthentication.Authenticate()总是返回False。 请原谅我编写我的代码而不是全部共享,但我工作的电脑没有互联网,所以我在另一台电脑上写了。 提前谢谢大家!

0 个答案:

没有答案