Post r??pido para redirecionar seu endere??o caso um usu??rio, ao digitar http://thiagomarcal.blogspot.com/, seja redirecionado automaticamente para https://thiagomarcal.blogspot.com/. Adicione um arquivo Global.asax e aplique o seguinte m??todo:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
if (!Request.IsSecureConnection)
{
string endereco = string.Format(“https{0}”, Request.Url.AbsoluteUri.Substring(4));
Response.Redirect(endereco);
}
}