Default value | Description |
|---|
<allow roles="" /> | An empty string indicating that all roles are allowed by default. |
<allow users="*" /> | An empty string indicating that all users are allowed access (no authentication is required). |
<authentication mode="Windows" /> | The authentication type that determines the source of the current User value. The default is Windows. |
<credentials passwordFormat="SHA1" /> | The hashing algorithm used on passwords. The default is SHA1. |
<deny roles="" /> | An empty string indicating that no roles are denied by default. |
<deny users="" /> | An empty string indicating that no users are denied by default. |
<forms loginUrl="logon.aspx" /> | The URL to which the request is directed if you set the authentication mode to Forms and if the request does not have a valid authentication ticket. |
<forms name=".ASPXAUTH" /> | The name under which the forms authentication cookie is stored on the user's computer. |
<forms path="/" /> | The path to which forms authentication applies. The default is all paths from the application root down. |
<forms protection="All" /> | The security applied to the forms authentication ticket. Values include: All, None, Encryption, and Validation. |
<forms timeout="30" /> | The timeout in minutes before the forms authentication ticket expires and users must re-authenticate. |
<forms requireSSL="false" /> | A Boolean value indicating whether an SSL connection is required to transmit the authentication cookie. |
<forms slidingExpiration="true" /> | A Boolean value indicating whether sliding expiration is enabled. For more information, see the SlidingExpiration property. |
<identity impersonate="false" /> | A Boolean value indicating whether impersonation is disabled. For more information, see ASP.NET Impersonation. |
<identity userName="" /> | An empty string indicating that no user identity is specified by default. |
<identity password="" /> | An empty string indicating that no password for the user identity is specified by default. |
<trust level="Full" originUrl="" /> | The security policy that will be applied to the application. |
<trustLevel name="Full" policyFile="internal"/> | The default policy file for Full trust level. |
<trustLevel name="High" policyFile="web_hightrust.config"/> | The default policy file for High trust level. |
<trustLevel name="Medium" policyFile="web_mediumtrust.config"/> | The default policy file for Medium trust level. |
<trustLevel name="Low" policyFile="web_lowtrust.config"/> | The default policy file for Low trust level. |
<trustLevel name="Minimal" policyFile="web_minimaltrust.config"/> | The default policy file for Minimal trust level. |