In localhost: It first comes to that default page in there i will redirect to this(code below)
protected void Page_init(object sender, EventArgs e)
{
Response.Redirect("~/Contents/");
}
This works fine for localhost but in the case of webhost: it comes to www.xyz.com and stops.
Can anyone help me resolve this problem.