0

没有引用来自参考文档 http://msdn.microsoft.com/en-us/library/da0adyye.aspx的 UI 元素

甚至在这里查看一些示例http://vishalnayan.wordpress.com/2011/03/22/creating-credential-store-for-form-authentication-in-asp-net-3-5/

我不明白 webconfig 凭据中的用户名和密码如何与 UI 元素映射。在示例中,文本框具有 id UsernameText 而不是 Username 那么 asp.net 如何在两者之间进行映射?

4

1 回答 1

1

它不会自动映射到 UI 元素。在用户输入他的用户名和密码后,它会在代码隐藏中被检查,如下所示:

if (FormsAuthentication.Authenticate(UsernameText.Text, PasswordText.Text))
于 2012-08-21T11:22:01.767 回答