AnonymousIdentificationModule.Enabled Özellik

Tanım

ASP.NET uygulaması için anonim tanımlamanın etkinleştirilip etkinleştirilmediğini belirten bir değer alır.

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

Özellik Değeri

true ASP.NET uygulaması için anonim kimlik etkinse; aksi takdirde , false. Varsayılan değer: false.

Örnekler

Aşağıdaki kod örneği, anonim tanımlamayı etkinleştiren bir uygulama için Web.config dosyasını gösterir.

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

Şunlara uygulanır