Posted on: 12/2/2014 5:59:54 PM | Views : 414

Hi 
This Logobtn is locate in Masterpage and the cookie created in Index.aspx i am facing error message when i click the button, the error message is: 
Object reference not set to an instance of an object.

protected void logobtn_Click(object sender, ImageClickEventArgs e) { HttpCookie cookie = Request.Cookies.Get("Location"); if (cookie ["Location"] != null) { Response.Redirect("Berava.aspx"); } else { Response.Redirect("Index.aspx"); } }

Go to the complete details ...