I have created a web application using Visualstudio 2008 using开发者_运维百科 C# on my computer.
I am using windows server 2003.
I have now published the webapplication and put those contents in the server.. with a field called inetpub\wwwroot.
i have created a root directory for it in the IIS with the name "super".
Now i need to see this in internetexplorer how do i do this...
I am new to this so please help me..
Thanks
Is there a Procedure on how to do all this from the start...
If you have created a .net website or .net web application, you can follow these instructions on Deploying ASP.NET Applications in IIS 6.0. In overview, when you do a publish from visual studio, you're compiling the application down to it's assemblies, you're stripping out the code behind files, and only moving over what is needed to run the site/application. Your webserver should be setup with a virtual directory pointing to the published folder, and it would be a good idea to have a Default.aspx page in the folder since the webserver looks for this page as it's starting point. Usually the default website is the site used inside of IIS for websites (at least when you've only got one). You should be able to right click on a file and browse the file if you have followed all of the setup instructions found in the referenced link.
Good luck, and hope this helps.
Within IIS, you could right click on default.asp and select browse.
精彩评论