if(Session["username"].ToString() == null)
{
Response.Redirect("LoginPage.aspx");
}
else
lblwelcome.Text = " Welcome " +Session["username"].ToString();
-----------------------------------this code i have written on home page load event
if user login in successfully and comes to this page
and after that close th tab by copying url of home page it agains open this should not happen instead it should goes to login page but this is not happening
so help me to overcome this pblm............