Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/05/2010, 11:26
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 15 años, 6 meses
Puntos: 30
Respuesta: Como ocultar el contenido de una pagina sin antes iniciar sesion

Como dice malenko beberas cambiar a modo Forms

Y luego en el web.config deberías tener algo asi
Código ASP:
Ver original
  1. <roleManager enabled="true" />
  2.     <authentication mode="Forms" >
  3.           <forms loginUrl="login.aspx" protection="All" name="AuthCookie" timeout="30"
  4.            cookieless="AutoDetect"/>
  5.     </authentication>
  6.     <identity impersonate="false" />
  7.    
  8.     <authorization>
  9.       <allow roles="Administrators" />
  10.       <deny users="?" />
  11.     </authorization>