internet explorer - ASP.Net Browser Compatibility -
if use ie connect asp.net site , let browser sit idle minute or , try click on new item, link, whatever, ie appears though it's trying load never anything.
if connect site using chrome , same thing chrome pulls next item expected no delay. i've tried making changes web.config sessionstate , httpruntime, asp , pool settings in iis, , can't seem fixes problem in ie.
is there setting somewhere, perhaps in windows fix ie seems browser dependent issue , not related asp site or iis? i'm running out of ideas , of users using ie , not chrome it's not problem can ignore.
here's web.config file if helps:
<?xml version="1.0"?> <!-- more information on how configure asp.net application, please visit http://go.microsoft.com/fwlink/?linkid=169433 --> <configuration> <connectionstrings> <add name="applicationservices" connectionstring="data source=.\sqlexpress;integrated security=sspi;attachdbfilename=|datadirectory|\aspnetdb.mdf;user instance=true" providername="system.data.sqlclient"/> <add name="tasksystemconnectionstring" connectionstring="data source=reportserver;initial catalog=tasksystem;integrated security=true" providername="system.data.sqlclient"/> </connectionstrings> <system.web> <sessionstate timeout="3600"/> <httpruntime executiontimeout="3600" maxrequestlength="2000000"/> <compilation debug="true" targetframework="4.0"/> <authentication mode="windows" /> <customerrors mode="off"/> <membership> <providers> <clear/> <add name="aspnetsqlmembershipprovider" type="system.web.security.sqlmembershipprovider" connectionstringname="applicationservices" enablepasswordretrieval="false" enablepasswordreset="true" requiresquestionandanswer="false" requiresuniqueemail="false" maxinvalidpasswordattempts="5" minrequiredpasswordlength="6" minrequirednonalphanumericcharacters="0" passwordattemptwindow="10" applicationname="/"/> </providers> </membership> <profile> <providers> <clear/> <add name="aspnetsqlprofileprovider" type="system.web.profile.sqlprofileprovider" connectionstringname="applicationservices" applicationname="/"/> </providers> </profile> <rolemanager enabled="false"> <providers> <clear/> <add name="aspnetsqlroleprovider" type="system.web.security.sqlroleprovider" connectionstringname="applicationservices" applicationname="/"/> <add name="aspnetwindowstokenroleprovider" type="system.web.security.windowstokenroleprovider" applicationname="/"/> </providers> </rolemanager> <pages controlrenderingcompatibilityversion="3.5" clientidmode="autoid" validaterequest="false"/> </system.web> <system.webserver> <defaultdocument> <files> <add value="home.aspx"/> </files> </defaultdocument> <modules runallmanagedmodulesforallrequests="true"/>
could database permissions. have tried specifying sql login in connections strings? can account running iis access these databases?
also check iis settings ensure authentication mode=windows.
i have had issues windows authentication when i'm not using ie. example, chrome doesn't pass through user identity , have enter credentials each time access intranet.
Comments
Post a Comment