Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Deployment

Tags:

asp.net

I have developed an ASP.NET Website in Visual Studio 2008. Now I want to deploy that in some other machine. How can I do that?? Like we make an installation package for Windows application what can we do for ASP.NET Websites?

like image 870
Roshan Avatar asked Apr 22 '09 14:04

Roshan


2 Answers

Consider using the Web Deployment Tool from Microsoft. It was specifically designed to help deploy web applications and updates to those web applications to production IIS 6 and 7 web servers and it does a better job of the task than MSI (Windows Installer), IMHO.

like image 129
Erv Walter Avatar answered Oct 12 '22 07:10

Erv Walter


You should precompile it first.

http://msdn.microsoft.com/en-us/library/ms227972.aspx

I use the web deployment projects, precompile and upload.

like this http://weblogs.asp.net/scottgu/archive/2008/01/28/vs-2008-web-deployment-project-support-released.aspx

like image 41
Chad Grant Avatar answered Oct 12 '22 05:10

Chad Grant