.net - App with windows auth asks for login -


i have auth set windows because running on company intranet. web.config looks like:

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

i building in vs 2013. each day, first time run app pops auth required login box , once give windows creds, fine (i assume caches creds). want app start , not ask valid user login creds.

i thought behavior of windows authentication. there iis express setting need change? else needed in web config?

you have configure web application domain "local intranet" site in internet explorer (chrome inherit setting ie, believe firefox have configured manually). can accomplished through "internet options --> security --> local intranet --> sites --> advanced --> add website".

you need configure automatic logon outlined in link: https://technet.microsoft.com/en-us/library/dd572939%28v=office.13%29.aspx?f=255&mspperror=-2147217396


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -