AnonymousIdentificationModule.Enabled Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die anonyme Identifikation für die ASP.NET Anwendung aktiviert ist.

public:
 static property bool Enabled { bool get(); };
public static bool Enabled { get; }
static member Enabled : bool
Public Shared ReadOnly Property Enabled As Boolean

Eigenschaftswert

true, wenn die anonyme Identifikation für die ASP.NET Anwendung aktiviert ist; andernfalls false. Der Standardwert lautet false.

Beispiele

Das folgende Codebeispiel zeigt eine Web.config Datei für eine Anwendung, die die anonyme Identifizierung ermöglicht.

<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>

Gilt für: