Hi,
I want to create a security system and prevent someone from bypassing my uservalidation.asp.
for example: in uservalidation.asp
I created username and password for users. I don't want any users that bypass this page and go to onlineshop.asp. only those with valid username and passwords should be allowed to see onlineshop.asp. if someone enter onlineshop.asp page without validating then they should be redirect to uservalidation.asp.
So what i have to change in uservalidation.asp and onlineshop.asp?
I know I have to write session variable code at top of the onlineshop.asp.
i know to redirect someone then use this code:
response.redirect "uservalidation.asp"
I am not sure about session variables for this cause
thanks
I want to create a security system and prevent someone from bypassing my uservalidation.asp.
for example: in uservalidation.asp
I created username and password for users. I don't want any users that bypass this page and go to onlineshop.asp. only those with valid username and passwords should be allowed to see onlineshop.asp. if someone enter onlineshop.asp page without validating then they should be redirect to uservalidation.asp.
So what i have to change in uservalidation.asp and onlineshop.asp?
I know I have to write session variable code at top of the onlineshop.asp.
i know to redirect someone then use this code:
response.redirect "uservalidation.asp"
I am not sure about session variables for this cause
thanks