seth
seth

Reputation: 1389

Create setup for asp.net 2.0 application

I have an asp.net 2.0 application that i want to deploy to a server. I want to make a setup that will install this application on the server. Also I must be able to configure parameters such as connection strings on the setup and these changes should reflect on the web.config.

I am using .NET Framework 2.0 and VS 2005.

P.S: I understand that searching "asp net application deployment" on google will give me tons of results, but as i have some special requirements and am doing this for the first time, someone with more experience may be able to push me in the right direction.

Regards,

Upvotes: 0

Views: 241

Answers (1)

KV Prajapati
KV Prajapati

Reputation: 94645

You can easily deploy your project using publish wizard (Visual Studio). Take a look at following articles :

  1. Using Web Deployment Projects with Visual Studio 2005
  2. VS 2005 Web Deployment Projects - by scott gu

Upvotes: 1

Related Questions