Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AnonymousIdentificationModule::Enabled Property

 

Gets a value indicating whether anonymous identification is enabled for the ASP.NET application.

Namespace:   System.Web.Security
Assembly:  System.Web (in System.Web.dll)

public:
property bool Enabled {
	static bool get();
}

Property Value

Type: System::Boolean

true if anonymous identification is enabled for the ASP.NET application; otherwise, false. The default is false.

The following code example shows a Web.config file for an application that enables anonymous identification.

<configuration>
  <system.web>
    <authentication mode="Forms" >
      <forms loginUrl="login.aspx" name=".ASPXFORMSAUTH" />
    </authentication>

    <anonymousIdentification enabled="true" />

    <profile defaultProvider="AspNetSqlProvider">
      <properties>
        <add name="ZipCode" allowAnonymous="true" />
        <add name="CityAndState" allowAnonymous="true" />
        <add name="StockSymbols" type="System.Collections.ArrayList" 
          allowAnonymous="true" />
      </properties>
    </profile>
  </system.web>
</configuration>

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft