ASP.NET Not Responding

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I just started having problems with my ASP.NET application. I am working with .NET 1.1, Visual Studio 2003, on a Windows XP box. For some reason, some of the pages respond and work fine, others don't respond at all. They don't even get to the Page Load event ... anyone have any idea for what would cause this on some pages and not others (even on pages in the same directory)?
 
Look at the events linked to the page (like the page_load event) sometimes
VS.NET 2003 likes to remove these, making the page not function
correctly....

JB

David Coe said:
I just started having problems with my ASP.NET application. I am working
with .NET 1.1, Visual Studio 2003, on a Windows XP box. For some reason,
some of the pages respond and work fine, others don't respond at all. They
don't even get to the Page Load event ... anyone have any idea for what
would cause this on some pages and not others (even on pages in the same
directory)?
 
I checked the Page events. Those are all in there. I did some more digging .. the Application_BeginRequest event fires on the working pages, but does not fire in the pages that do not load. I also viewed the Performance monitor for ASP.NET and did not see that any requests were coming in for the application when I was making them. Could there be a communication problem between IIS (5.0) handing off commands to the worker process?
 
Back
Top