我正在使用登录控件,但我想要稍微更加自定义的外观,所以我使用textfields作为用户名和密码。并试图使用ImageButton进行“登录”按钮,但似乎登录有一个“onAuthenticate”属性但ImageButton没有。有什么方法可以在我的ImageButton上使用“onAuthenticate”的功能吗?
的ImageButton:
<asp:ImageButton ID="LoginButton" runat="server" CommandName="Login" ValidationGroup="Login"
ImageUrl="~/Images/loginExtranet.png"/>
这很重要,因为我需要调用以下功能:
protected void LoginExtranet_Authenticate(object sender, AuthenticateEventArgs e)
{
// Check Database for username and password
// ....
// if correct set e.Authenticated = true
// redirect to destination
}
ImageButton控件没有调用此函数的属性,Login控件执行此操作。
答案 0 :(得分:1)
您需要使用按钮单击事件并在进行检查后使用FormsAuthenitcation.SetAuthCookie方法登录用户
http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication.setauthcookie.aspx
答案 1 :(得分:0)
在这种情况下,我使用CustomValidator
对凭据进行身份验证,然后在OnClick
事件中,我可以捕获if(Page.IsValid)
属性,然后根据需要使用FormsAuthentication
类功能