satyendera
satyendera

Reputation:

How can I deploy my ready website?

I have well developed an ASP.NET website with SQL Server 2000. How can I drop it on a server?

Upvotes: 0

Views: 321

Answers (4)

NinethSense
NinethSense

Reputation: 9028

There are many ways to do this.

Read this - http://www.beansoftware.com/ASP.NET-Tutorials/Deploy-ASP.NET.aspx

Upvotes: 0

Konstantin Tarkus
Konstantin Tarkus

Reputation: 38428

You can use SQL Server Publisher (free) wizard for moving database from development machine to the server. Or you can use SQL Server database schema synchronization tool by Red-gate.com

And SitePubisher for deploying files over FTP (and VPN)

Upvotes: 0

dommer
dommer

Reputation: 19820

Depends on a number of things (e.g. if you have direct access to the server(s)). I tend to export my database structure as a SQL script and execute that against the production database. I then "publish" the site using VS and copy it across to a virtual directory on the web server.

If I am passing the application to a customer, I tend to use WiX or a VS deployment project to wrap the application up in an installer.

Upvotes: 0

Related Questions