I am using ASP.Net's forms authentication, but do not want the default behavior of redirecting to a login page when a restricted area is accessed. Instead I would like to invoke a javascript JQuery dialog for the login on the current page, preventing the content behind from loading.
My only issue is that by default the forms authentication wants to redirect.
Is there a handler that I can hook into, or 开发者_JAVA技巧some other option to prevent the redirect?
In addition to Dewfy:
Add the following to your web.config:
<system.web.extensions>
<scripting>
<webServices>
<authenticationService enabled="true" />
</webServices>
</scripting>
</system.web.extensions>
You can now call the authentication service from JavaScript like:
Sys.Services.AuthenticationService.login("username",
"password", false, null, null, loginCompleted, loginFailed, "");
function loginCompleted()
{
var loginSuccessful = Sys.Services.AuthenticationService.get_isLoggedIn();
if(loginSuccessful) /* do stuff */
}
function loginFailed(result, userContext, method)
{
alert('Exception ' + result.get_message());
}
Yes, if you deal with JQuery review possibility to use standard ASP.Net ajax oriented
Sys.Services.AuthenticationService
.
You might want to look into the LoginView
control. This lets you set different templates for anonymous users and users that have logged in. It still uses ASP.NET authentication, so you can keep your current forms based authentication.
精彩评论