Hi!
I'm trying to learn jQuery Mobile and trying to do a login page.
I'm using ASP.net, C# and webforms.
If the login credentials are wrong, an error message is shown from an update panel.
The error message is shown correctly, but the loading message wont disappear.
Have I done something wrong?
The code behind that is executed is just:
- ErrorMessage.Text = "Username or password is wrong. Please try again.";
- ErrorMessage.Visible = true;
- upDefault.Update();
Can anyone help me?