I found a few posts on this forum related to this, but I was not able to find anything directly related to my issue. I have a login page (default.aspx) that works great for 90% of our users (mostly Macs). The other 10% (mostly PCs) report that they enter their username and password, click 'Login' and the page simply refreshes and clears what they've input. It is supposed to log them in and take them directly to cl_account.aspx.
Here is the code that I think you will need, but if you need something else, just let me know:
{
Boolean isLogin = new CurrentUser().ClientLogin(this.txtUserName.Value.Trim(), this.txtPassWord.Value.Trim());
if(isLogin == false)
this.lblMsg.Text = "The password is invalid!";
else
Response.Redirect("cl_account.aspx");
}
Thanks in advance!
Kelly