If Trim(Session("StaffType")) = "" Then
Response.Redirect("Invalid.aspx")
End If
If Not Page.IsPostBack Then
End If
this is on page_load ...
it work since when i set the session to "" , then on the page_load will identify it and prohibit to enter the page...
 thanks chris
|