Cita:
Iniciado por lbauerle podrias mostrarme un poquito de codigo pliss?
THX.
Claro que si, tu web.config debe de quedar asi:
Código XML:
Ver original<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<location path="Backstage">//Ruta raiz que quieres proteger
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
<connectionStrings>
</connectionStrings>
<appSettings>
</appSettings>
<system.web>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Forms">
<forms name=".Default" loginUrl="Backstage\Login.aspx" protection="All" timeout="15" />//Ruta del formulario de autenticación (Inicio de sesión)
</authentication>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
-->
</system.web>
<system.webServer>
<modules>
</modules>
</system.webServer>
</configuration>
En el formulario de inicio de sesión me imagino que realizaras alguna validación del usuario, pero ademas debes de agregar el siguiente código:
Código C#:
Ver originale.Authenticated = [Validar usuario]
if (e.Authenticated)
{
FormsAuthentication.RedirectFromLoginPage([USER NAME], [RECORDARME]);
}
Eso es lo básico, si tienes dificultades no dudes en preguntar.
Saludos