views:

25

answers:

1

I am checking a value of session and if there is no value i am redirecting it to default page.The following works in firefox and google chrome but not in IE.

   if (Session["OrgId"] != null)
    {
        //My logic
    }
   else
      {
           Response.Redirect("../Default.aspx?Sid=1", true);
       }

I get Operation Aborted in IE. Internet Explorer cannot open the Internet site

http://localhost:1218/order/Default.aspx?Sid=1 Any suggestion.