i am new in this field i want to upload my website in asp.net (microsoft visual studio 2010) and its database(sql server 2008) . what are the steps i want to follow and please tell me the expected cost? please help me
how to upload a website and database
Collapse
X
-
Tags: None
-
You should Publish your website using Visual Studio 2010. Visual Studio will produce the files required for the website to work when you host it.
You will need to find a web host that has SQL Server 2008, ASP.NET, and the appropriate .NET Framework that your website targets (likely .NET framework 4.0 if you're using 2010).
You will need to produce scripts to recreate and populate your tables on the web host's SQL Server.
Then all you have to do is run the SQL scripts to create & populate your database and move the files produced by publishing your website to the host.
You may have to do some additional configurations on the host but that's the idea of it.
-Frinny
Comment