asp.net - Loging page doesn't load completely -


i developing web application,i branched 3 separated projects trunk after each week merging trunk.

i created 2 website on iis 7 named staging , devel, staging main version developer , support teams can work on , tests, devel published version developer team can publish each resolved issue on it.

staging , devel websites working have similar iis configuration except connectionstring.

all things working these websites, have decided create website named demo customers' tests there strange problem iis or maybe codes, iis configuration same these 3 websites, when want view demo loging page doesn't load (css , js), template , images doesn't load reason think problem's reason authentication mode or application pools on iis can't main reasons because 3 website have same configurations, disabled forms authentication , changed application pool checked security on each staging,devel , demo's folders loging page demo doesn't load want.

iis authentication configs each of them is:

anonymous , forms authentication enable.

windows,asp.net impersonation,basic authentication , digest authentication disable.

on .net v4 application pool changed identity mode result wasn't difference, identity "localsystem".

you can see

staging, devel each of loging page loaded successfully.

but while demo loging page loading can see address bar , see result, seems trying authenticate, btw logged loging's page_load following:

code:

logging logging = new logging(global.logpath); logging.log(loggingmode.information, "loading login page finished."); 

result:2014-04-14 16:11:33.9817 [warning] [web.application.ngweb.dll] application_start running... 2014-04-14 16:11:36.3892 [warning] [web.application.ngweb.dll] application_start performed successfully... 2014-04-14 16:11:36.4682 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5417 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5427 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5432 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5467 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5487 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5492 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5512 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5667 [information] [web.application.ngweb.dll] loading login page finished. 2014-04-14 16:11:36.5682 [information] [web.application.ngweb.dll] loading login page finished.

the content of log file strange ,loging's page_load event fired many times.

i don't know,i confused.

any idea appreciated?

thanks in advance.

the problem ngweb folder not accessible anonymous users on demo site. in web.config need authorization section allow anonymous users, so:

  <authorization>      <allow users="*" />   </authorization> 

Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -