FormsAuthentication.DefaultUrl Propriedade
Definição
Obtém a URL para a qual a classe FormsAuthentication não será redirecionada se nenhuma URL de redirecionamento for especificada.Gets the URL that the FormsAuthentication class will redirect to if no redirect URL is specified.
public:
static property System::String ^ DefaultUrl { System::String ^ get(); };
public static string DefaultUrl { get; }
member this.DefaultUrl : string
Public Shared ReadOnly Property DefaultUrl As String
Valor da propriedade
A URL para a qual a classe FormsAuthentication será redirecionada se nenhuma URL de redirecionamento for especificada.The URL that the FormsAuthentication class will redirect to if no redirect URL is specified. O padrão é “default.aspx”.The default is "default.aspx."
Exemplos
O exemplo de código a seguir define o defaultUrl atributo no arquivo Web.config.The following code example sets the defaultUrl attribute in the Web.config file.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx"
defaultUrl="index.aspx" />
</authentication>
Comentários
O DefaultUrl valor da propriedade é definido no arquivo de configuração para um aplicativo ASP.NET usando o defaultUrl atributo do elemento de configuração de formulários .The DefaultUrl property value is set in the configuration file for an ASP.NET application by using the defaultUrl attribute of the forms configuration element. A DefaultUrl propriedade será usada pelo RedirectFromLoginPage método se nenhuma URL de retorno for incluída na solicitação.The DefaultUrl property is used by the RedirectFromLoginPage method if no return URL is included in the request. Da mesma forma, o GetRedirectUrl método retornará o DefaultUrl se nenhuma URL de retorno for incluída na solicitação.Similarly, the GetRedirectUrl method will return the DefaultUrl if no return URL is included in the request.