How tell if ASP.NET installed ???

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

Guest

I've just started trying to use .NET. It was installed on my PC by our
desktop support group who have no experience with .NET.
It appears they did not install ASP.NET since a test page displays the HTML
minus any ASP.NET controls.
How can I definitely verify whether ASP.NET was installed? And how should it
be installed?
Basically our desktop groups solution was to wipe my PC and start again or
they offered to just give me the CD's and try to do it myself.
I'm using Win 2000 and have Framework 1.1 installed
 
Run this statement...

<%windir%>\Microsoft.NET\Framework\[framework version]
aspnet_regiis /?

Tells you to run this statement...
aspnet_regiis -lv


Then run this file...

<!-- http://localhost/tstdotnet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

Then kill the 'support' staff ;-)
 
what will this do?
I'm not going to run anything before I know what it does.
If it helps any, when I go to configuration on a virtual directory in IIS, I
do not see the ASPX extension listed or any of the other .NET exptensions,
all I see is the .ASP and classic ASP extensions.

clintonG said:
Run this statement...

<%windir%>\Microsoft.NET\Framework\[framework version]
aspnet_regiis /?

Tells you to run this statement...
aspnet_regiis -lv


Then run this file...

<!-- http://localhost/tstdotnet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

Then kill the 'support' staff ;-)


--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/



mscertified said:
I've just started trying to use .NET. It was installed on my PC by our
desktop support group who have no experience with .NET.
It appears they did not install ASP.NET since a test page displays the HTML
minus any ASP.NET controls.
How can I definitely verify whether ASP.NET was installed? And how should it
be installed?
Basically our desktop groups solution was to wipe my PC and start again or
they offered to just give me the CD's and try to do it myself.
I'm using Win 2000 and have Framework 1.1 installed
 
Thanks for that link.
Unfortunately, we are not allowed to install any software ourselves, that
has to be done by our desktop support group.
I do believe I have ASP.NET on my PC, its just not installed on the web
server.
I do have the file aspnet_wp.exe on my C:\ drive.
- David
 
The /? displays the documentation and is a standard for just
about any command line program.


--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/


mscertified said:
what will this do?
I'm not going to run anything before I know what it does.
If it helps any, when I go to configuration on a virtual directory in IIS, I
do not see the ASPX extension listed or any of the other .NET exptensions,
all I see is the .ASP and classic ASP extensions.

clintonG said:
Run this statement...

<%windir%>\Microsoft.NET\Framework\[framework version]
aspnet_regiis /?

Tells you to run this statement...
aspnet_regiis -lv


Then run this file...

<!-- http://localhost/tstdotnet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

Then kill the 'support' staff ;-)


--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/



mscertified said:
I've just started trying to use .NET. It was installed on my PC by our
desktop support group who have no experience with .NET.
It appears they did not install ASP.NET since a test page displays the HTML
minus any ASP.NET controls.
How can I definitely verify whether ASP.NET was installed? And how
should
it
be installed?
Basically our desktop groups solution was to wipe my PC and start again or
they offered to just give me the CD's and try to do it myself.
I'm using Win 2000 and have Framework 1.1 installed
 
Back
Top