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 ;-)

Signature
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
> 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.
[quoted text clipped - 5 lines]
> 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
mscertified - 26 Oct 2004 21:19 GMT
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.
> Run this statement...
>
[quoted text clipped - 34 lines]
> > 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
clintonG - 27 Oct 2004 00:41 GMT
The /? displays the documentation and is a standard for just
about any command line program.

Signature
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
> what will this do?
> I'm not going to run anything before I know what it does.
[quoted text clipped - 40 lines]
> > > 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
Try this link it may help.
http://msdn.microsoft.com/asp.net/gettingstarted/getaspnet/default.aspx
> 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.
[quoted text clipped - 5 lines]
> 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
mscertified - 26 Oct 2004 21:23 GMT
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
> Try this link it may help.
> http://msdn.microsoft.com/asp.net/gettingstarted/getaspnet/default.aspx
[quoted text clipped - 8 lines]
> > 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