473,653 Members | 2,990 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 1462
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.as px. 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*******@jimc osoftware.com> wrote in message
news:%2******** *******@TK2MSFT NGP15.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.as px. 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\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis.e xe -i

This should fix it.

Regards

"JIMCO Software" <co*******@jimc osoftware.com> wrote in message
news:%2******** *******@TK2MSFT NGP15.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.as px. 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\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis.e xe -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******** ********@TK2MSF TNGP09.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\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis.e xe -i

This should fix it.

Regards

"JIMCO Software" <co*******@jimc osoftware.com> wrote in message
news:%2******** *******@TK2MSFT NGP15.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.as px. 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\syst em32\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.as px

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 /vs1076480367297 36250_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.as px 302
16:51:52 127.0.0.1 GET /vs1868277500297 36250_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.as px 302
16:51:59 127.0.0.1 GET /rd_home.aspx 302
16:54:18 127.0.0.1 GET /vs-969832084297362 50_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.as px 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-251279354297362 64_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.as px 302
18:35:52 127.0.0.1 GET /rd_home.aspx 302
18:38:39 127.0.0.1 GET /vs1513820411297 36265_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.as px 302
18:38:39 127.0.0.1 GET /rd_home.aspx 302

"JIMCO Software" <co*******@jimc osoftware.com> wrote in message
news:uz******** ******@TK2MSFTN GP10.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\syst em32\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.as px

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.as px 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.dl l) in the
web project.

Perhaps this explains the behavior ... ?

"JIMCO Software" <co*******@jimc osoftware.com> wrote in message
news:e5******** *****@TK2MSFTNG P10.phx.gbl...
John Grandy wrote:
Here it is .... it does include GET /get_aspx_ver.as px

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.as px 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
6030
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 invoked from a standalone VBScript file without problems. I tried monitoring file system for possible access violations but unsuccessfully. The DLLs are located in a
1
6818
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 to fix it is to do an "iisreset /restart" from a command prompt. I have the latest MDAC, Scripting engine and have checked all sorts of things. I cannot find any "on error resume next" problems in the code as suggested by Microsoft. this This...
10
1649
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 seems like the death of complicatet webpages full of hacks, and the always present problem with browser incompatibility.
11
1411
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. Before I go off attempting to learn how to build e-commerce websites, please tell me why I should learn ASP.net 2.0. How is ASP.net going to fit into this picture? Will it replace XHTML pages, for example? I was thinking that the Framework...
1
5831
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 base class method "Page_PreLoad(..., ...)". Anyone able to help me out? Alot of the stuff down there probably doesn't look right, it's a work in progress, and I'm a C#/.NET newbie. TIA
2
1462
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, Label CheckName) The error on Publish is The type or namespace name 'controls_dateSelector_ascx' does not exist in the namespace 'ASP' (are you missing an assembly reference?)
4
3240
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: Solution will NOT compile. Error is simply: "External component has thrown an exception". NO other details.
0
8283
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8704
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
8470
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
8590
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
6160
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
4147
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4291
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
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.