473,412 Members | 5,385 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

windows update causes ASP .NET problems

AF
After installing windows update kb837001 on our Windows 2000 server with .NET framework 1.1, it is impossible to browse to our ASP .NET application. When you type in the address, Internet Explorer continues attempting to open the page, but never reaches it.
I haven't found any information on Microsoft's website indicating this is a problem with installing the update. Any ideas?

Thanks,
Andrea
Nov 18 '05 #1
5 1370
"AF" <AF@discussions.microsoft.com> wrote in message
news:73**********************************@microsof t.com...
After installing windows update kb837001 on our Windows 2000 server with ..NET framework 1.1, it is impossible to browse to our ASP .NET application.
When you type in the address, Internet Explorer continues attempting to open
the page, but never reaches it. I haven't found any information on Microsoft's website indicating this is

a problem with installing the update. Any ideas?

I'd go through the standard diagnostic steps:

1) Confirm that IIS is running. If it is,
2) Try to ping the server. If that works,
3) Get a command prompt and execute a "telnet <servername> 80" command. If
it connects, type "GET /" followed by a couple of newlines. The output might
be interesting. If it doesn't connect, that suggests that IIS either isn't
running or isn't listening on port 80.

Also, check the IIS log (start using one if you aren't already), and the
Event Logs.
--
John Saunders
johnwsaundersiii at hotmail
Nov 18 '05 #2
AF
Thanks, John, but I forgot to mention in my post that ASP pages on the same server are accessible and run correctly. It's only the ASP .NET ones that are the problem.

Andrea

"John Saunders" wrote:
"AF" <AF@discussions.microsoft.com> wrote in message
news:73**********************************@microsof t.com...
After installing windows update kb837001 on our Windows 2000 server with

..NET framework 1.1, it is impossible to browse to our ASP .NET application.
When you type in the address, Internet Explorer continues attempting to open
the page, but never reaches it.
I haven't found any information on Microsoft's website indicating this is

a problem with installing the update. Any ideas?

I'd go through the standard diagnostic steps:

1) Confirm that IIS is running. If it is,
2) Try to ping the server. If that works,
3) Get a command prompt and execute a "telnet <servername> 80" command. If
it connects, type "GET /" followed by a couple of newlines. The output might
be interesting. If it doesn't connect, that suggests that IIS either isn't
running or isn't listening on port 80.

Also, check the IIS log (start using one if you aren't already), and the
Event Logs.
--
John Saunders
johnwsaundersiii at hotmail

Nov 18 '05 #3
"AF" <AF@discussions.microsoft.com> wrote in message
news:A3**********************************@microsof t.com...
Thanks, John, but I forgot to mention in my post that ASP pages on the same server are accessible and run correctly. It's only the ASP .NET ones
that are the problem.

I'd still follow the same steps.
--
John Saunders
johnwsaundersiii at hotmail
"John Saunders" wrote:
"AF" <AF@discussions.microsoft.com> wrote in message
news:73**********************************@microsof t.com...
After installing windows update kb837001 on our Windows 2000 server
with ..NET framework 1.1, it is impossible to browse to our ASP .NET application. When you type in the address, Internet Explorer continues attempting to open the page, but never reaches it.
I haven't found any information on Microsoft's website indicating this
is a problem with installing the update. Any ideas?

I'd go through the standard diagnostic steps:

1) Confirm that IIS is running. If it is,
2) Try to ping the server. If that works,
3) Get a command prompt and execute a "telnet <servername> 80" command. If it connects, type "GET /" followed by a couple of newlines. The output might be interesting. If it doesn't connect, that suggests that IIS either isn't running or isn't listening on port 80.

Also, check the IIS log (start using one if you aren't already), and the
Event Logs.
--
John Saunders
johnwsaundersiii at hotmail

Nov 18 '05 #4
AF
I ran aspnet_regiis.exe to repair IIS mappings and that seemed to do the trick.
"AF" wrote:
After installing windows update kb837001 on our Windows 2000 server with .NET framework 1.1, it is impossible to browse to our ASP .NET application. When you type in the address, Internet Explorer continues attempting to open the page, but never reaches it.
I haven't found any information on Microsoft's website indicating this is a problem with installing the update. Any ideas?

Thanks,
Andrea

Nov 18 '05 #5
AF
I ran aspnet_regiis.exe to repair IIS mappings and that seemed to do the trick.
"AF" wrote:
After installing windows update kb837001 on our Windows 2000 server with .NET framework 1.1, it is impossible to browse to our ASP .NET application. When you type in the address, Internet Explorer continues attempting to open the page, but never reaches it.
I haven't found any information on Microsoft's website indicating this is a problem with installing the update. Any ideas?

Thanks,
Andrea

Nov 18 '05 #6

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

Similar topics

6
by: paul calvert | last post by:
I hope somewhere here has encountered and solved a similar problem in the past. 1) on a new Win2000 PC: installed Visual C++ 6.0 download & install single file Service Pack 5.0 2) try to...
5
by: me | last post by:
I have a Class Library that contains a Form and several helper classes. A thread gets created that performs processing of data behind the scenes and the Form never gets displayed (it is for debug...
4
by: Joey Powell | last post by:
Hello all. For a long time now I have been struggling with a .net Windows Forms problem. In several of my applications, I use the "Process" class from System.Diagnostics to accomplish various task...
5
by: Louis LeBlanc | last post by:
Hey folks. I'm new to the list, and not quite what you'd call a DB Guru, so please be patient with me. I'm afraid the lead up here is a bit verbose . . . I am working on an application that...
3
by: Chris Paul | last post by:
I'm having trouble with PHP & PostgreSQL/OpenLDAP/Apache on Windows. I've set this up countless times on BSD (piece of cake) but I'm trying to do this on Windows now so that my developer can work...
1
by: Rob R. Ainscough | last post by:
I'm having several issues with Windows Setup Projects in VS 2005 and need to find a resource that might be able to help me work around some of the short comings of Windows Setup Projects (Windows...
0
by: Metal2You | last post by:
I'm working on an ASP.NET 2.0 application in Visual Studio 2005 that accesses a Sybase database back end. We're using Sybase SQL Anywhere 9.0.2.3228. I have installed and registered the Sybase...
3
by: Niron kag | last post by:
Hi, I wrote a windows service in c# in .NET 1.1 and SQL Stored Procedures, and I run it on Microsoft windows server 2003 service pack 1. The service works every 10 minutes and pass data between...
6
by: Chris Marsh | last post by:
All I have a database table, changes to the data within which I am interested in acting on. The approach that I'm taking is to have the database update a file every time data is updated. This...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.