Cannot get ASP.Net to serve any pages under IIS6

terryape

New Member
I am trying to set up another instance of a live website for a customer to evalulate, however i am unable to get the server to serve up any ASP.NET pages at all.I know this is normally a bit of a noob question, but i have set up these servers a hundred times and know all the usual gotchas, i have done all of the following to no avail, and for my example i have created a simple test page that writes out hello world, and i'm still unable to get anything to serve..This is windows server 2003 R2 SPII
  • I have registered ASP.NET using aspnet_regiis.exe -i
  • I have enabled the web service extensions
  • I have created it as a virtual directory, and created the application
  • I have set the version of ASP.NET for my virtual directory to use
  • I have even created a new App Pool and given it administrator permissions.
  • I have run Auth Diag From Microsoft, i get and error from the authentication check, but it is blank
  • I have given full control to the \[code\]everyone\[/code\] group for the folder
  • I have tried creating a new website with a different port, same problem
In fiddler i get the following repsonse when loading an asp.net page :\[code\]HTTP/1.1 504 Fiddler - Receive FailureContent-Type: text/htmlConnection: closeTimestamp: 09:43:01:0634ReadResponse() failed: The server did not return a response for this request. \[/code\]Looking at the IIS logs, i dont see any entries for any of the ASP.NET requests unless i turn on windows authentication, then i see \[code\]2011-04-12 08:13:23 W3SVC1 10.4.3.16 GET /test/Test.aspx - 80 - 10.2.16.17 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+Trident/4.0;+GTB6.6;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729;+InfoPath.2;+.NET4.0C;+.NET4.0E) - 401 2 21480742542011-04-12 08:13:26 W3SVC1 10.4.3.16 GET /test/Test.aspx - 80 - 10.2.16.17 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+Trident/4.0;+GTB6.6;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729;+InfoPath.2;+.NET4.0C;+.NET4.0E) - 401 1 0\[/code\]HTML Pages serve up just fine, i'm stumped and about to get the server re-built as i have wasted long enough on this..Any ideas :( ?
 
Top