共用方式為


Roles.CookieName 屬性

定義

取得快取角色名稱之 Cookie 的名稱。

public:
 static property System::String ^ CookieName { System::String ^ get(); };
public static string CookieName { get; }
static member CookieName : string
Public Shared ReadOnly Property CookieName As String

屬性值

快取角色名稱之 Cookie 的名稱。 預設值為 .ASPXROLES。

範例

下列範例顯示 ASP.NET 應用程式 Web.config 檔案區段中 的 roleManager 元素 system.web 。 它會指定應用程式使用 SqlRoleProvider 實體,並將屬性設定 cookieName 為 。ASPROLES。

<roleManager defaultProvider="SqlProvider"
  enabled="true"
  cacheRolesInCookie="true"
  cookieName=".ASPROLES"
  cookieTimeout="30"
  cookiePath="/"
  cookieRequireSSL="false"
  cookieSlidingExpiration="true"
  cookieProtection="All" >
  <providers>
    <add
      name="SqlProvider"
      type="System.Web.Security.SqlRoleProvider"
      connectionStringName="SqlServices"
      applicationName="MyApplication" />
  </providers>
</roleManager>

備註

您可以在 ASP.NET 應用程式的 Web.config 檔案中設定 cookieName 屬性,以指定快取應用程式角色的 Cookie 名稱。 當您想要唯一識別應用程式的 Cookie,或跨多個應用程式共用 Cookie 時,例如網域 Cookie 時,這非常有用。

適用於

另請參閱