Let\'s say I\'m hosting a website at http://www.foobar.com.
Is there a way I can programmatically ascertain \"http://www.foobar.com/\" in my code behind (i.e. witho
string hostUrl = Request.Url.Scheme + "://" + Request.Url.Host; //should be "http://hostnamehere.com"