views:

166

answers:

2

What are the steps to host an asp.net 3.5 published website in iis 6.0? Any suggestion...

+1  A: 

Create a virtual directory in IIS, then use Visual Studio's Publish wizard to publish the site.

SLaks
A: 

Make sure server has microsoft .net framework 3.5 (with sp1 recommended) runtime installed. Use web deployment projects for deploying your asp.net application in single output assembly or use web publishing wizard for extract a release build. Make sure the build does not use debug configuration and it must be in release mode. Create a website or virtual diretory and configure it to run under asp.net 2.0. You will also need to define under which application pool the application shall run, it could be shared or isolated one. Copy your asp.net build to the root directory of the website or the virtual directory and you're good to go..

this. __curious_geek