Set up applications

  • Thread starter Thread starter Ton
  • Start date Start date
Ton,

If you've create a project the project is automatically added to the IIS
server.

All you need to do is compile it and it will then be accessible.

However, most projects are created with a single page "WebForm1.aspx" and
IIS does not use WebForm1.aspx as a default page which it will point to
automatically.

You can open your page by specifying it:
http://localhost/ProjectName/WebForm1.aspx

As an alternative IIS does use "default.aspx" as a default so if you rename
your page from "WebForm1.aspx" to "default.aspx" then if you open your
project as: http://localhost/ProjectName then IIS will automatically open
the default page.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Back
Top