I have a procedure to check if a userid/password are valid and then flag the procedure with a boolean. How do I use this boolean to take the user to another page?
thanks,
eye
Printable View
I have a procedure to check if a userid/password are valid and then flag the procedure with a boolean. How do I use this boolean to take the user to another page?
thanks,
eye
If flgPasswordStatus then
Server.Transfer("NextPage.aspx")
End if
Is that what you are looking for ?
yes, S&M...thanks
u can also use that with the web config to make all pages in your site valid when the enters a valid user name and password