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 ...