473,503 Members | 1,746 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

"ASP.NET 1.1 not installed ... " error

Open a .sln containing a web-app and receive the "ASP.NET 1.1 not installed
.... " error .....

I've never know the root cause of this error. I've always dealt with it by
closing the web-app , deleting the contents of the

\{web-app}\bin\

directory and re-opening the web-app.
Nov 19 '05 #1
9 1455
John Grandy wrote:
Open a .sln containing a web-app and receive the "ASP.NET 1.1 not
installed ... " error .....

I've never know the root cause of this error. I've always dealt with
it by closing the web-app , deleting the contents of the

\{web-app}\bin\

directory and re-opening the web-app.

Root causes can be many. When you open a project in VS.NET, a GET request
is made for a non-existant file called get_aspx_ver.aspx. The response
should contain a header with the version of ASP.NET that's running. If it
doesn't get back 1.1.4322, it assumes you aren't running 1.1. That means
that if an error occurs during that request, you will see this message.

You can get a Netmon trace, check IIS logs, make a request for an ASP.NET
page and see what happens, etc. to try and get to the REAL root cause.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003


Nov 19 '05 #2
Hi Jim, and thanks for the response.

Where would I find the IIS logs ?

And how would I go about a NETMON trace ?

"JIMCO Software" <co*******@jimcosoftware.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
John Grandy wrote:
Open a .sln containing a web-app and receive the "ASP.NET 1.1 not
installed ... " error .....

I've never know the root cause of this error. I've always dealt with
it by closing the web-app , deleting the contents of the

\{web-app}\bin\

directory and re-opening the web-app.

Root causes can be many. When you open a project in VS.NET, a GET request
is made for a non-existant file called get_aspx_ver.aspx. The response
should contain a header with the version of ASP.NET that's running. If it
doesn't get back 1.1.4322, it assumes you aren't running 1.1. That means
that if an error occurs during that request, you will see this message.

You can get a Netmon trace, check IIS logs, make a request for an ASP.NET
page and see what happens, etc. to try and get to the REAL root cause.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003

Nov 19 '05 #3
The reason is most likely because you installed IIS AFTER you installed
Visual Stuio 2003 or something similar. There is a way to get around this
with any luck. Make sure IIS is installed first.

Run the following command from the framework directory

Directory of
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

This should fix it.

Regards

"JIMCO Software" <co*******@jimcosoftware.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
John Grandy wrote:
Open a .sln containing a web-app and receive the "ASP.NET 1.1 not
installed ... " error .....

I've never know the root cause of this error. I've always dealt with
it by closing the web-app , deleting the contents of the

\{web-app}\bin\

directory and re-opening the web-app.

Root causes can be many. When you open a project in VS.NET, a GET request
is made for a non-existant file called get_aspx_ver.aspx. The response
should contain a header with the version of ASP.NET that's running. If it
doesn't get back 1.1.4322, it assumes you aren't running 1.1. That means
that if an error occurs during that request, you will see this message.

You can get a Netmon trace, check IIS logs, make a request for an ASP.NET
page and see what happens, etc. to try and get to the REAL root cause.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003

Nov 19 '05 #4
<<<
Run the following command from the framework directory

Directory of
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

Hi, and thanks for the response.

This I have tried. Re-installing ASP.NET does not solve my problem.
"Mr Newbie" <he**@now.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl... The reason is most likely because you installed IIS AFTER you installed
Visual Stuio 2003 or something similar. There is a way to get around this
with any luck. Make sure IIS is installed first.

Run the following command from the framework directory

Directory of
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

This should fix it.

Regards

"JIMCO Software" <co*******@jimcosoftware.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
John Grandy wrote:
Open a .sln containing a web-app and receive the "ASP.NET 1.1 not
installed ... " error .....

I've never know the root cause of this error. I've always dealt with
it by closing the web-app , deleting the contents of the

\{web-app}\bin\

directory and re-opening the web-app.

Root causes can be many. When you open a project in VS.NET, a GET
request is made for a non-existant file called get_aspx_ver.aspx. The
response should contain a header with the version of ASP.NET that's
running. If it doesn't get back 1.1.4322, it assumes you aren't running
1.1. That means that if an error occurs during that request, you will
see this message.

You can get a Netmon trace, check IIS logs, make a request for an ASP.NET
page and see what happens, etc. to try and get to the REAL root cause.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003


Nov 19 '05 #5
John Grandy wrote:
Hi Jim, and thanks for the response.

Where would I find the IIS logs ?

And how would I go about a NETMON trace ?


IIS logs are usually in c:\windows\system32\logfiles.

Regarding a Netmon, you can use either Netmon if you have it or Ethereal. I
have a tutorial on my site on Ethereal on my Web site:

http://www.jimcoaddins.com/tutorials/auth/default.aspx

Ignore the fact that it deals with FrontPage. You just want to know how to
capture packets and analyze the result.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003


Nov 19 '05 #6
Here it is .... it does include GET /get_aspx_ver.aspx

But what to make of this ? I chose the "Do not open the application"
option when I opened the .sln in VS03 ...

#Software: Microsoft Internet Information Services 5.1
#Version: 1.0
#Date: 2005-09-19 16:50:33
#Fields: time c-ip cs-method cs-uri-stem sc-status
16:50:33 127.0.0.1 GET /vs107648036729736250_tmp.htm 200
16:50:33 127.0.0.1 GET /_vti_inf.html 404
16:50:34 127.0.0.1 POST /_vti_bin/shtml.dll 200
16:50:34 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:50:34 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:50:40 127.0.0.1 GET /metro-edata.xsd 200
16:51:48 127.0.0.1 GET /get_aspx_ver.aspx 302
16:51:52 127.0.0.1 GET /vs186827750029736250_tmp.htm 200
16:51:52 127.0.0.1 GET /_vti_inf.html 404
16:51:52 127.0.0.1 POST /_vti_bin/shtml.dll 200
16:51:52 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:51:52 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:51:52 127.0.0.1 GET /get_aspx_ver.aspx 302
16:51:59 127.0.0.1 GET /rd_home.aspx 302
16:54:18 127.0.0.1 GET /vs-96983208429736250_tmp.htm 200
16:54:18 127.0.0.1 GET /_vti_inf.html 404
16:54:18 127.0.0.1 POST /_vti_bin/shtml.dll 200
16:54:18 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:54:18 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
16:54:18 127.0.0.1 GET /get_aspx_ver.aspx 500
#Software: Microsoft Internet Information Services 5.1
#Version: 1.0
#Date: 2005-09-19 18:35:42
#Fields: time c-ip cs-method cs-uri-stem sc-status
18:35:42 127.0.0.1 GET /vs-25127935429736264_tmp.htm 200
18:35:42 127.0.0.1 GET /_vti_inf.html 404
18:35:42 127.0.0.1 POST /_vti_bin/shtml.dll 200
18:35:42 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
18:35:42 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
18:35:45 127.0.0.1 GET /metro-edata.xsd 200
18:35:48 127.0.0.1 GET /get_aspx_ver.aspx 302
18:35:52 127.0.0.1 GET /rd_home.aspx 302
18:38:39 127.0.0.1 GET /vs151382041129736265_tmp.htm 200
18:38:39 127.0.0.1 GET /_vti_inf.html 404
18:38:39 127.0.0.1 POST /_vti_bin/shtml.dll 200
18:38:39 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
18:38:39 127.0.0.1 POST /_vti_bin/_vti_aut/author.dll 200
18:38:39 127.0.0.1 GET /get_aspx_ver.aspx 302
18:38:39 127.0.0.1 GET /rd_home.aspx 302

"JIMCO Software" <co*******@jimcosoftware.com> wrote in message
news:uz**************@TK2MSFTNGP10.phx.gbl...
John Grandy wrote:
Hi Jim, and thanks for the response.

Where would I find the IIS logs ?

And how would I go about a NETMON trace ?


IIS logs are usually in c:\windows\system32\logfiles.

Regarding a Netmon, you can use either Netmon if you have it or Ethereal.
I have a tutorial on my site on Ethereal on my Web site:

http://www.jimcoaddins.com/tutorials/auth/default.aspx

Ignore the fact that it deals with FrontPage. You just want to know how
to capture packets and analyze the result.

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003

Nov 19 '05 #7
John Grandy wrote:
Here it is .... it does include GET /get_aspx_ver.aspx

But what to make of this ? I chose the "Do not open the
application" option when I opened the .sln in VS03 ...

#Software: Microsoft Internet Information Services 5.1
#Version: 1.0
#Date: 2005-09-19 16:50:33
#Fields: time c-ip cs-method cs-uri-stem sc-status
16:51:48 127.0.0.1 GET /get_aspx_ver.aspx 302


You are being redirected (see the 302) when this is served. Are you
redirecting in global.asax? What about Forms authentication?

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003


Nov 19 '05 #8
This log does not span any actual running of my web-app (either in debug or
runtime modes). It only spans opening the .sln in VS03.

I just found out that there is a commercial control (RichTextBox.dll) in the
web project.

Perhaps this explains the behavior ... ?

"JIMCO Software" <co*******@jimcosoftware.com> wrote in message
news:e5*************@TK2MSFTNGP10.phx.gbl...
John Grandy wrote:
Here it is .... it does include GET /get_aspx_ver.aspx

But what to make of this ? I chose the "Do not open the
application" option when I opened the .sln in VS03 ...

#Software: Microsoft Internet Information Services 5.1
#Version: 1.0
#Date: 2005-09-19 16:50:33
#Fields: time c-ip cs-method cs-uri-stem sc-status
16:51:48 127.0.0.1 GET /get_aspx_ver.aspx 302


You are being redirected (see the 302) when this is served. Are you
redirecting in global.asax? What about Forms authentication?

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003

Nov 19 '05 #9
John Grandy wrote:
This log does not span any actual running of my web-app (either in
debug or runtime modes). It only spans opening the .sln in VS03.


That doesn't matter. Because VS.NET is making a request against the app,
code in global.asax will run and Forms Auth (if enabled) will be in effect.

What is the location header from the 302?

--
Jim Cheshire
JIMCO Software
http://www.jimcosoftware.com

FrontPage add-ins for FrontPage 2000 - 2003


Nov 19 '05 #10

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

Similar topics

1
6023
by: Riyad | last post by:
Hi all, I have trouble instantiating a COM object from an ASP file: Server.CreateObject raises "Access Denied" error. The COM object is a VB.Net assembly registered for COM Interop. It can be...
1
6812
by: KWINTERS | last post by:
I have a 2GB Ram, Win2K SP4, SQL 2K SP3, 2 1.8GHz AMD processor server that is getting occasional "not enough storage space to complete this operation" errors on certain ASP pages. The only way...
10
1638
by: Flare | last post by:
Hi I just read and experimented with normal .net GUI apps and deployed them with notouch deployment strategie as smartclients. Is it just me, or i this an very neglected topic? For me it...
11
1398
by: Dennis D. | last post by:
Hello: So far I am into XML, XHTML, JavaScript, VB.net, and the .Net Framework. I have the ability to use SQL server, MS Access, or XML as databases, and 1.1 and 2.0 are installed on the server....
1
5823
by: TJ | last post by:
Hello all, I'm having a weird error. I'm getting error CS1513 on Line 36. It appears when I comment out this line, it compiles just fine but doesn't do what I want, which is run the code in the...
2
1457
by: Michael D. Ober | last post by:
What reference am I missing in the following code: public static CheckKey Parse(TextBox BankRouting, TextBox Account, TextBox Amount, TextBox CheckNum, ASP.controls_dateselector_ascx PaymentDate,...
4
3230
by: =?Utf-8?B?U0g=?= | last post by:
There seems to be an issue with .NET 3.5/Visual Studio 2008 (Team System). After convincing my company to create our latest project in .NET 3.5, this is kind of reflecting bad on me. Problem:...
0
7273
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
7322
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
7451
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...
0
5572
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,...
1
5000
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...
0
4667
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...
0
3161
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3150
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1501
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 ...

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.