Global 301 redirection from domain to www.domain

asp.net, global-asax, http-status-code-301, vb.net

Solution

protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
{
  string currentUrl = HttpContext.Current.Request.Path.ToLower();
  if(currentUrl.StartsWith("http://mydomain"))
  {
    Response.Status = "301 Moved Permanently";
    Response.AddHeader("Location", currentUrl.Replace("http://mydomain", "http://www.mydomain"));
    Response.End();
  }
}

Problem

could i use the begin request of Global.asax to redirect everything, from mydomain.domain to www.mydomain.domain? If this one is true, how can i do that?

Original source