First ASP.Net

  • Thread starter Thread starter DMP
  • Start date Start date
D

DMP

Hi ,
I write a Hello.Aspx in Notepad.
And save in C:\ASPNET folder.
What will be the configuration change to run the Hello.aspx on my local
machine(localhost) ?
Thanks,
 
You'll have to put it on a site topn which ASP.NET is enabled (assuming you
alaready installted the console).

You can check this in the IIS console by seeing if ASPX extension are
directed to the aspnet executable. If this is not the case see the doc for
the aspnet_regiis tool that allows to enable asp.net for a particular
site....

Patrice
 
Open the IIS Manager and create a virtual directory
named ASPNET which points to C:\ASPNET

Then, you can acess it via http://localhost/ASPNET/your.aspx
You might also want to set a default document ( like default.aspx )



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
You need to just drop it in a web site that has iis and the framework
installed.
in XP just make sure that iis is running and check for net framework 1.1 in
your add/remove pgms.
thanks
kes
 
Thank everybody
Kurt Schroeder said:
You need to just drop it in a web site that has iis and the framework
installed.
in XP just make sure that iis is running and check for net framework 1.1
in
your add/remove pgms.
thanks
kes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top