7 references to LoginUrl
System.Web (7)
Security\FormsAuthentication.cs (1)
737string loginUrl = FormsAuthentication.LoginUrl;
Security\FormsAuthenticationModule.cs (3)
212if (AuthenticationConfig.AccessingLoginPage(context, FormsAuthentication.LoginUrl)) { 269if (!String.IsNullOrEmpty(FormsAuthentication.LoginUrl)) 270loginUrl = AuthenticationConfig.GetCompleteLoginUrl(context, FormsAuthentication.LoginUrl);
UI\WebControls\login.cs (1)
1316return AuthenticationConfig.AccessingLoginPage(Context, System.Web.Security.FormsAuthentication.LoginUrl);
UI\WebControls\loginstatus.cs (2)
301Page.Response.Redirect(FormsAuthentication.LoginUrl, false); 322url = FormsAuthentication.LoginUrl;