Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I hope this question doesn't "violate" the rules here. That said, onto my question:

I am programmer with a very good grasp on ASP.NET, .NET (VB.NET/C#), and SQL (SQL Server, Oracle, Teradata). In my 8 years of development experience, though, the one thing I've never done is set up a website or database from the bottom up.

Since I don't want to host the site on my own server for various reasons, I need to know where this site be hosted so that I can set up IIS 7 and my own database of choice. I have registered domains before and have been able to put up simple HTML pages for very limited viewing, but going this distance is a bit new to me.

share|improve this question

closed as off topic by Quentin, AVD, mu is too short, casperOne Dec 9 '11 at 13:51

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

5 Answers

Please have a look at this articles about ASP.NET Hosting Options and Host an ASP.NET Web Service Outside of IIS which might give you a good idea.

share|improve this answer

A good solution is to look for a hosting package that has Plesk control panel on it. It will make configuring the DNS, IIS7, Email, FTP accounts super easy.

If you get a VPS or dedicated server package then you would also be able to get into the server via remote desktop to make any extra changes that you might need to. This could include messing with IIS7 settings, installing an extra database server, etc.

Please take care to check your server spec against the minimum spec recommended for the database server. I know around a year ago the basic VPS packages had under the 1gb recommended minimum to run Sql Server Express on it.

share|improve this answer

Well depending on how flexible you want your hosting to be, you have a number of choices.

Although firstly you will need a Windows server, not linux as you'll need to run .net off it. (I'm sure theirs probably a way of emulating IIS7 with Apache etc etc) but I've always gone with Windows servers for Windows technologies.

Next up you have the hosting package, this vary from site to site, but an average host with a single windows account will stick you on a shared server (everything is set and ready to go), with possibly PLESK as an additional payment. Plesk is a more powerful administration tool than other free versions. You will almost probably not have remote desktop access, or the ability to upgrade and install additional frameworks/programs with ease. Although a good host usually keeps it updated, has .net 4, PHP, PEAR, SQL,MYSQL etc)

The next option is usually a VPS or cloud hosting, it gives the impression you have your own server and resources, but is just a virtual server. This is what I use, I find it very handy to be able to go in and change permissions, upgrade frameworks etc etc.

Lastly you have the dedicated server which works exactly the same, but you get 100% of the server.

By default Windows 2008 (R2) will come all ready out the box, you'll simply need to setup the site (permissions, .net version, perl, cgi etc) in IIS by adding a "new website" wizzard which creates a portion in the INETPUB directory on the server. You can then deploy the site as you would via FTP. (Compile for release - log in via FTP - drop in the HTTPDOCS folder)

Although you should do further reading into application pools, DNS, Plesk. I'm with a host that proivde 24/7 support. I suggest you search for something similar!

Good luck!

share|improve this answer

First You have to get Windows Hosting and you have to register your domain. you can do this from http://www.GoDaddy.com.

Then you have to host you site on godaddy using FTP credential. and you have to do some setting on godaddy like: you have to select Asp.Net Framework. there will be 1.1,3.0 and 4.0 selection.

Then you have to make Database if it is in SQL2XXX. You can access this DB in you SQl Manager IDE and upload your DB script at there.

Happy Coding :) :) :)

share|improve this answer

"Since I won't be able to host the site on my own server": Why not? -

Depending on what sort of site it is (development or whatever) this is easy enough:

  • Windows 7 IIS for the hosting
  • SQLServer Express for the DB
  • GoogleApps for domains for the email etc from the domain.
  • ZoneEdit for the DNS - this supports variable IPs as well if you can't get static.
  • FastHosts to hold the domain name, with the name servers pointed at ZoneEdit.

Assuming you have a PC already, the only thing that costs here is a few quid for buying the domain name.

Its a good thing to try out - you learn much more doing it yourself.

Also you don't have a big outlay as you get things up and running, or commit to any contracts etc.

I have a MacMini running windows 7 that handles a number of server functions, and runs a number of small scale sites through this method.

I find this great for development work - obviously you do need a proper hosting package for a large production site, but for small scale or development/testing this works great.

share|improve this answer
1  
I technically can host it on my own box, but this is a website for someone else who is going to be footing the bill while I simply handle the dev side of things. I don't really want to deal with the added overhead and responsibility of another machine running in my house. – oscilatingcretin Dec 8 '11 at 13:53
1  
@oscilatingcretin, it's probably worth editing that in to the original question. – jwiscarson Dec 8 '11 at 15:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.