views:

84

answers:

2

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...

A: 

Within IIS, you could right click on default.asp and select browse.

dove
it says page cannot be found
plus my start page is Webform3 not default...
So, select Webform3.aspx and select browse.
John Saunders
i did that... and the page not found...
is what i did for publish right?? or should i copy all files
@unknown, i'm not fully clear what you did. what do you mean you created a root directory? did you create a web app in iis?
dove
+1  A: 

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.

Chris