MobileFormsAuthentication Class
Note: This API is now obsolete.
Supports cookieless devices by appending appropriate authentication information to the appropriate URLs. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.
Assembly: System.Web.Mobile (in System.Web.Mobile.dll)
'Declaration <ObsoleteAttribute("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")> _ <AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level := AspNetHostingPermissionLevel.Minimal)> _ <AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _ Public Class MobileFormsAuthentication
The MobileFormsAuthentication type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | RedirectFromLoginPage(String, Boolean) | Redirects an authenticated user to the originally requested URL after logging in. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site. |
![]() ![]() | RedirectFromLoginPage(String, Boolean, String) | Redirects an authenticated user to the originally requested URL after logging in. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site. |
![]() ![]() | SignOut | Calls the FormsAuthentication.SignOut method and sets the PersistCookielessData property to false. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
This helper class is designed to assist with writing authenticated mobile Web sites. The class objects provide mobile device-compatible versions of the ASP.NET FormsAuthentication class methods, RedirectFromLoginPage and SignOut. For more information on securing your Web application, see Basic Security Practices for Web Applications.
The following code example shows a login.aspx page. The authentication is validated using the ValidateUser function. The Membership class relies on membership providers to communicate with a data source.
<%@ Page Language="VB" Inherits="System.Web.UI.MobileControls.MobilePage" %> <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %> <%@ Import Namespace="System.Web.Security" %> <%@ Import Namespace="System.Web.Mobile" %> <script runat="server"> Private Sub Login_Click(ByVal sender As Object, ByVal e As EventArgs) ' Perform Authentication check here by using ' UserEmail.Value and UserPswd.Value. If (Membership.ValidateUser(UserEmail.Text, UserPswd.Text)) Then ' Set the authorization cookie FormsAuthentication.SetAuthCookie(UserEmail.Text, False) ' Redirect from login page MobileFormsAuthentication.RedirectFromLoginPage(UserEmail.Text, True) Else ' Notify the user lblError.Text = "Login invalid. Please check your credentials" End If End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <body> <mobile:form id="form1" runat="server"> <Mobile:Label ID="Label1" runat="server">Enter username</Mobile:Label> <Mobile:TextBox id="UserEmail" runat="Server"/> <Mobile:Label ID="Label2" runat="server">Enter password</Mobile:Label> <Mobile:TextBox id="UserPswd" runat="Server"/> <Mobile:Command ID="Command1" runat="Server" OnClick="Login_Click" SoftkeyLabel="og">Go</Mobile:Command> <Mobile:Label runat="server" id="lblError" /> </mobile:form> </body> </html>
- AspNetHostingPermission
for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission
for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
