473,785 Members | 2,990 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problems loading web pages

Jon
I can't run aspnet applications after doing building it in Visual
Studio. I can load the application in my browser until I make changes
in vs. After that, it just hangs. I've waited up to 5-10 minutes for
the page to load, but eventually have to shut off the power as
everything stops responding. I've been having this problem for a while,
so I'd really appreciate it if I could get a suggestion.
Jon Cosby

Nov 19 '05 #1
2 1312
Hi Jon,

The first thing I would try is killing the aspnet_wp.exe process using the
task manager. That will cause it to recycle and should fix this "hanging"
problem. This is not the long-term solution, though.

Are you using VS.NET 2003, or a later version? Maybe you need to upgrade
your system to .NET framework 1.1 with VS.NET 2003?

Do you have mssearch installed and enabled? There are some issues with
mssearch and VS.NET being able to write assemblies that are being searched by
mssearch. Try disabling mssearch on your computer when you are developing
your projects. Again, this is not a long-term solution.

Do you have any IIS accelerators installed? Things that attempt to cache,
compress, or otherwise intercede in requests? If so, disable or remove them
from your development machine. They might be holding locks on the assemblies
that could be causing timeouts.

If everything stops responding after 5-10 minutes, then it sounds like it
could be drive related (hardware failure), memory, or a COM interop
incompatibility (some software you have installed could be interferring with
IIS/Windows).

Run a chkdsk on your drives to make sure they are healthy. Also, you can
get a memory checker from OCA.MICROSOFT.C OM that will identify any memory
errors on your system.

Hope that helps.

-- Jake

"Jon" wrote:
I can't run aspnet applications after doing building it in Visual
Studio. I can load the application in my browser until I make changes
in vs. After that, it just hangs. I've waited up to 5-10 minutes for
the page to load, but eventually have to shut off the power as
everything stops responding. I've been having this problem for a while,
so I'd really appreciate it if I could get a suggestion.
Jon Cosby

Nov 19 '05 #2
Jon
javatopia wrote:
Hi Jon,

The first thing I would try is killing the aspnet_wp.exe
process using the task manager. That will cause it to
recycle and should fix this "hanging" problem. This is
not the long-term solution, though.
I can't run the Task Manager.
Are you using VS.NET 2003, or a later version? Maybe
you need to upgrade your system to .NET framework 1.1
with VS.NET 2003?
I'm using 2002, and an upgrade is not possible at this time. The
problem came up in recent months, I've used 2002 for three years before
this without a problem.
Do you have mssearch installed and enabled? There are
some issues with mssearch and VS.NET being able to write
assemblies that are being searched by mssearch. Try
disabling mssearch on your computer when you are
developing your projects. Again, this is not a
long-term solution. Do you have any IIS accelerators installed? Things
that attempt to cache, compress, or otherwise intercede
in requests? If so, disable or remove them from your
development machine. They might be holding locks on
the assemblies that could be causing timeouts.
No accelators or search tools.
If everything stops responding after 5-10 minutes, then
it sounds like it could be drive related (hardware
failure), memory, or a COM interop incompatibility (some
software you have installed could be interferring with
IIS/Windows).
Maybe it wasn't clear, I waited 5 minutes for the modified page to
load. Everything stops responding when I try to load the modified page.
I don't have this problem with other web pages. After booting up again,
the modified page loads normally.
Run a chkdsk on your drives to make sure they are healthy.
Also, you can get a memory checker from OCA.MICROSOFT.C OM
that will identify any memory errors on your system.
These bring up nothing, neither does the event viewer.
Hope that helps.

-- Jake

"Jon" wrote:
I can't run aspnet applications after doing building it in Visual
Studio. I can load the application in my browser until I make changes
in vs. After that, it just hangs. I've waited up to 5-10 minutes for
the page to load, but eventually have to shut off the power as
everything stops responding. I've been having this problem for a while,
so I'd really appreciate it if I could get a suggestion.
Jon Cosby


Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1623
by: jascraig | last post by:
Here's my dilemma. I'm working with a frameset with 3 frames (header,content,control). My control frame contains a select list with buttons for next and previous. When the next button is pushed the select list moves to the next option and the content frame changes to the next URL, and a page number is updated on the header. The code I have now works great on NS 7 and FF1. When I test it in IE, the select box updates then immediately...
32
4541
by: jp29 | last post by:
My take on problems composing, serving and rendering XHTML documents/web pages: 1. Typical conscientious web authors are producing XHTML documents (Web pages) that feature valid Markup and with the content (MIME) type specified as text/html (http://keystonewebsites.com/articles/mime_type.php). These pages are then loaded on to their Server where they are served to Rendering Agents (browsers) as HTML (SGML application) documents with no...
5
4005
by: Scott | last post by:
I have a customer that had developed an Access97 application to track their business information. The application grew significantly and they used the Upsizing Wizard to move the tables to SQL 2000. Of course there were no modifications made to the queries and they noticed significant performance issues. They recently upgraded the application to Access XP expecting the newer version to provide performance benefits and now queries take...
7
2734
by: Wolf | last post by:
I can't get VS.NET to make a Web Project on my computer. The IISHelp doesn't work either (HTTP 500 - Internal Server Error). I get the following error, when I try to make a new Project. I was getting an error about not having ASP.NET installed, but have fixed it. --- Error Message --- The Web server reported the following error when attempting to create or open the Web project at the following URL: 'http://localhost/WebApplication1'....
0
3228
by: ZMan | last post by:
Scenario: This is about debugging server side scripts that make calls to middle-tier business DLLs. The server side scripts are legacy ASP 3.0 pages, and the DLLs are managed DLLs converted/developed with VB.NET. What I want from debugging is to be able to step into the methods in the DLLs called from ASP scripts using Visual Studio .NET. Background: For typical script debugging issues, you can read and follow the two documents on...
13
1657
by: tshad | last post by:
How do we handle Caching in IE? It seems that my system works fine in Mozilla and Netscape when I make changes. But in IE the changes are not brought across when someone has been to the site before. If they have been here before and hit the same page, the old page is rendered which will cause errors as things that are expected with the new changes are not being done, such as session cookies being created or updated.
21
2969
by: matvdl | last post by:
I have a system that was originally developed in asp - the pages are saved in SQL (there are over 10,000 pages) and saved to a temp directory in the server when requested by a client. I have updated this system and changed the pages that are saved to the server as aspx - everything works fine and pages can be served - but Its not impossible for a single client to request 100 plus pages in one session - as each page is requested it is...
1
1706
by: J. Jeffrey Close | last post by:
Hi all, I have been trying for some time to build Python 2.4.x from source on OS X 10.4.6. I've found *numerous* postings on various mailing lists and web pages documenting the apparently well-known problems of doing so. Various problems arise either in the ../configure step, with configure arguments that don't work, or in the compile, or in my case in the link step with libtool.
3
4488
by: PCgeek | last post by:
sorry moved this over to javascript forum, didn't mean to post 2x! Hi guys, I'm trying to put the finishing touches on my website and could really use some help on this particular issue. My page includes background music with a javascript music player on the main page below an iframe that is used for all content and navigation of the site and so that the music doesn't reload each time a page is switched. There is another javascript to resize...
3
2047
by: Phil | last post by:
Jerry posed some good ideas, a while back, on website a security issue that comes up often. Gary Jones was asking how to keep users from directly accessing php pages, out of sequence. Jerry posed a directory management solution. No one seems to have mentioned an alternative. Maybe there is a reason? We took a different approach, noting that the only way we wanted a user to enter some phps would be through a predefined series of steps...
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10151
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.