共用方式為


Roles.CookiePath 屬性

定義

取得快取角色名稱 Cookie 的路徑。

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

屬性值

快取角色名稱之 Cookie 的路徑。 預設為 /。

範例

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

<roleManager defaultProvider="SqlProvider"
  enabled="true"
  cacheRolesInCookie="true"
  cookieName=".ASPROLES"
  cookieTimeout="30"
  cookiePath="/MyApplication"
  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 檔案中設定 cookiePath 屬性,以指定應用程式快取角色的 Cookie 路徑。 如需 Cookie 路徑的詳細資訊,請參閱 Path

適用於

另請參閱