Ver Mensaje Individual
  #8 (permalink)  
Antiguo 08/07/2011, 00:45
Avatar de AnibalDiaz
AnibalDiaz
 
Fecha de Ingreso: junio-2011
Mensajes: 65
Antigüedad: 12 años, 10 meses
Puntos: 5
Respuesta: IIS & Sql server authentication

Eso lo tienes que configurar en el web.config de tu proyecto.

<system.web>
<authentication mode = "Windows"/>
<identity impersonate="true"/>

<authorization>
<allow users = "*"/>
</authorization>
<!--other settings-->

</system.web>