Prafull Bansode
Prafull Bansode

Reputation: 45

Hosting asp.net website with database

I have created one asp.net website (project) with the help of Microsoft Visual Studio 2010. The database of the respective project is designed with the help of Microsoft SQL Server Management Studio 2008. Now I want to publish the website on the internet. Can somebody please guide me in this? Thanks in advance.

Upvotes: 3

Views: 3822

Answers (2)

DividedByZero
DividedByZero

Reputation: 4391

  1. You need a Windows hosting provider (a provider that uses windows servers) that supports all the technologies you used (MVC maybe?)
  2. Remove all debugging code (if any) from your application and modify the web.config as needed
  3. upload the whole project folder (without the .sln file) to the server and try to run the website
  4. if you run into an error, ask a good question on stackoverflow :-)

Please note: StackOverflow is not a tutorial site and is only for specific questions like "What and where are the stack and heap?" not "How to write a hello world application in C#". While I am answering this question, please avoid asking such broad questions in the future.

Upvotes: 2

krilovich
krilovich

Reputation: 3505

Consider trying azure.

You get more control over what you do and its really simple to publish

http://azure.microsoft.com/en-us/pricing/free-trial/

Azure hosts its own database so you just move your tables into it.. there are a ton of guides on how to start this

Upvotes: 1

Related Questions