Try this |
| sri sri replied to Jobi K John at 09-May-08 04:46 |
Hi, Check is session variable is null then redirect to sessionExpired.aspx
try this
protected void Page_Load(object sender, EventArgs e) { if (Convert.ToString(Session["Login"])!="1") { Response.Redirect("~/SessionExpired.aspx",false); } }
|
|