Sorry - should have also have pointed out that
run >> "C:\WINDOWS\Microsoft.NET\
Will also enable the dll if you haven't got it already installed.
Main Topics
Browse All TopicsHello All,
This ASP.net and IIS stuff is so confusing to me. I think I have IIS running. I think I have .Net installed. How can I tell? I have so many questions, but I don't know what to ask, and in what order!!!
I keep reading in publications and at Web sites: goto Start -> Programs -> Administrative Tools when dealing with certain things. I'm using Windows XP PRO and I DON"T SEE 'Administrative Tools' by way of Start -> Programs -> Administrative Tools. I have to select Control Panel and navigate to the 'Administrative Tools' from there. Somewhere, somehow I found RUN -> inetmgr and I have been able to look at some things, but why can't I use Start -> Programs -> Administrative Tools like it is described in many publications/Web sites - That's why I think something isn't loaded/installed.
Is there a simple code snippet that I can use to see (for sure) if I'm running everything that needs to be running on my computer to display a .ASP.Net page (.aspx)?
Any help would be great! BTW, I'm at work and not at my PC running XP.
Amanda
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
thefritterfatboy,
Is this what I would need to do?
1. Save this code to a file with the extension of .aspx (ex: MyFirstPage.aspx).
2. Place it into the virtual directory (c:\inetpub\wwwroot)?
3. Open IE and then select the file and run it.
As I recall when trying the ran another file this way, a window open asking me to create an Application name (or something like that). Or, just above that was something about an 8080 selection. thefritterfatboy, this is from memory - not at computer.
Amanda
A window would have opened asking you to "select an application" to open the file with.
Did ensure you typed http://127.0.0.1/MyFirstPa
If you did type the http://localhost or http://127.0.0.1 then you will have seen a "What do you wish to do with this file" dialog. I'm guessing you clicked "run this file from it's current location" and that's why you had the "select application" dialog. This means you don't have asp.NET installed on your IIS and you need to run the application in my first post.
thefritterfatboy,
When I create a file (MyFirstPage.aspx) in Web Matrix, I try to run it by pressing F-5. At this point it isn't saved to anything and it is asking me whether I want to save as (something about 8080) or an Application Name. I'm not sure what this Application Name or 8080 selection means.
Amanda
I'm unfamiliar with webMatrix.
http://www.asp.net/webmatr
You should save your file before running it. The 8080 is the port you wish to run the script on. (Leave it as 8080 - this is a pretty standard http port)
As for your application path - just use the directory you've saved the file to.
I'd assume WebMatrix sets up your IIS on installation, so you shouldn't need to do anything there.
Business Accounts
Answer for Membership
by: thefritterfatboyPosted on 2004-07-21 at 05:07:00ID: 11601661
Not everyone has Administrative Tools under "Programs". I don't. Just keep it in your control panel.
Framework\ v1.1.4322\ aspnet_reg iis.exe -i -enable"
As for testing for aspx:
Open up your IIS. (Run >> 'inetmgr'). Right click your website or "default Web Site" and click properties. Click the "home Directory" tab and then the "configuration" button. Check to see if the aspx extension is assigned to a dll.
to make sure this DLL is registered correctly:
run >> "C:\WINDOWS\Microsoft.NET\
(Or wherever you installed .net to)