Hi every body, I have a simple question: How can I see a
ASP.Net project in my machine, I mean see this http://localhost/ProjectName? in the browser, I have the
IIS alredy installed, what else I need to do?
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.
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.