开发者

How to deploy classic asp website?

I would like to know how to deploy or what are the steps that are involved to deploy a classic asp website 开发者_如何学Pythonin IIS 6/7

Can we create an installer for the existing project?


You should consider using Web Deploy http://www.iis.net/download/WebDeploy, it can deploy your ASP applications, setup the IIS application and other settings (like APplication Pool, etc), and even include COM objects, Registry keys and more. Even better you can parameterize content like Connection Strings, Title, settings, so that at install time you can pass those paramters either through the command line or the User Interface. It can deploy between IIS 6 and IIS 7 and even help you compare existing deployed versions with packaged versions (zip files), or other servers.


  1. Make sure a virtual directory has been set up in IIS.
  2. Copy all files into the virtual directory
  3. If applicable, register required DLLs with regsvr32.exe
  4. Run.

Hope this helps.


EDIT: I see you want to make an installer for the application. Have a look here for a guide on how to do it. To my knowledge there isn't anything that is "plug and play" for installing your project; you will have to make it.


Copy the files to the virtual folder. If you have any depending dll's or exe's make sure to install them too.

As you said you may have to create an installer that will do this works to you. There is a lot of installers out there, like Inno Setup and Windows Installer.


If its just ASP and you have no DLL's or COM Components then you would just have to copy all the files to a Virtual Directory under approot or wwwroot. XCopy copies all directories, subdirectories and files. As for an installer, you wouldn't really need it but it would be useful if you make one that sets up the virtual directory, copies the files and configures any host headers if needed.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜