c# - ASP.NET IDENTITIES Turn On when i publish -


when publish mvc4 c# website on server, iis authentication "take identity of asp.net" turning on automatically.

how can let authentication "off" ?

it's working code in webconfig :

<authentication mode="windows" />     <identity impersonate="false" /> <authorization>     <deny users="?" /> </authorization> 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -