共用方式為


FormsAuthentication.RequireSSL 屬性

定義

取得值,指出表單驗證 Cookie 是否需要 SSL 才能傳回至伺服器。

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

屬性值

如果表單驗證 Cookie 需要 SSL 才能傳回至伺服器,則為 true,否則為 false。 預設為 false

範例

下列程式代碼範例會在 Web.config 檔案中設定 requireSSL 屬性。

<authentication mode="Forms">
  <forms loginUrl="member_login.aspx"
    cookieless="UseCookies"
    requireSSL="true"
    path="/MyApplication" />
</authentication>

備註

RequireSSL屬性值是使用requireSSL表單組態項目的 屬性,在 ASP.NET 應用程式的組態檔中設定。 您可以在 ASP.NET 應用程式的 Web.config 檔案中指定是否需要 SSL (安全套接字層) ,才能將窗體驗證 Cookie 設定 requireSSL 為 伺服器。 如需詳細資訊,請參閱Secure

建議您將 設定requireSSL為 ,您也可以slidingExpiration將 設定為 falsefalse,以減少票證有效的時間量。

適用於

另請參閱