473,386 Members | 1,652 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,386 software developers and data experts.

How tell if ASP.NET installed ???

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
Jul 21 '05 #1
5 14279
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 cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"mscertified" <ru****@tigerlily.com> wrote in message
news:B9**********************************@microsof t.com...
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

Jul 21 '05 #2
Tim
Try this link it may help.
http://msdn.microsoft.com/asp.net/ge...t/default.aspx
"mscertified" wrote:
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

Jul 21 '05 #3
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" wrote:
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 cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"mscertified" <ru****@tigerlily.com> wrote in message
news:B9**********************************@microsof t.com...
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


Jul 21 '05 #4
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

"Tim" wrote:
Try this link it may help.
http://msdn.microsoft.com/asp.net/ge...t/default.aspx
"mscertified" wrote:
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

Jul 21 '05 #5
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 cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
"mscertified" <ru****@tigerlily.com> wrote in message
news:2C**********************************@microsof t.com...
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" wrote:
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 cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"mscertified" <ru****@tigerlily.com> wrote in message
news:B9**********************************@microsof t.com...
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


Jul 21 '05 #6

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

Similar topics

4
by: Guy Lateur | last post by:
Hi all, I'm trying to generate a (exhaustive) list of all the applications that are installed on a user's machine. I've written some code that reads the registry ('App Paths'): <code> appKey...
2
by: j.b.messina | last post by:
This has not yet been published by Microsoft. It will be published within the next few weeks, mainly because I asked them to. I felt this was information badly needed, and I think this is the...
3
by: Raj | last post by:
Hi All, Is it possible to detect if a client software is installed on a machine using browser javascript. we are building a web/windows software and when the user logs into the web application,...
3
by: Hugo Mind | last post by:
Hi, Is there a way through the web to find out if a client has the framework 1.1 installed ? I want people to download an installer for our software which includes the framework 1.1 if they...
22
by: EP | last post by:
When running my asp.net hosting service (asp.net without IIS), on server 2003 with IIS not installed, I get the following when trying to process a request. "System.DllNotFoundException: Unable to...
5
by: Velvet | last post by:
Can someone tell me to what process I need to attach to be able to step through my classic ASP code in VS.net 2003. I'm working on an XP box with IIS installed. I also have VS.net 2005 (The...
14
by: Developer | last post by:
Hello All, i have recently installed VS2005 and was trying to install SQL sever 2000. I have Win XP' SP2. But when I tried installing, it only installed client tools and not the database. Can...
7
by: ray well | last post by:
how can i test during install time if the .NET Framework 2.0 has been installed. i'm assuming it is in the registry somewhere, but i don't know where to look, what to look for, and how to test for...
1
by: Charles Sanders | last post by:
I am not sure if this is the right forum to ask this. If it is not, could someone pleas point me to a more appropriate newsgroup. I am attempting to install dap.plugins.netcdf using easy_install...
1
by: Mufasa | last post by:
Window's has a way to tell if Anti Virus is installed ( or at least appears to - when it's not installed - it tells you ). How can I do the same check? I just want to know if AV is installed. ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
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...

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.