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

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -