% 'Check that the user should be allowed to access this page. 'If not, send them to another page. If Session("ReadWrite") = "Read" Then 'the user is not validated to be here. Redirect to the Guest Page Response.Redirect "../../guest_main.asp" End If %> <% Response.Buffer = true %> <% If Request.Form("btnGoTo") = "Show All Records" Then 'response.write "showall" Response.redirect "Show_All.asp" Elseif Request.Form("btnGoTo") = "Search the Database" Then 'response.write "search" Response.redirect "Search.asp" Elseif Request.Form("btnGoTo") = "Add New Record" Then 'response.write "add new" Response.redirect "AddNew.asp" end if %>
|
|||||||||
| |
|||||||||
|
|||||||||