Quote:
Originally Posted by jack10685
great god, I suck at VB. Are there any video tutorials of this anywhere on how to set it up correctly? I am trying to set it up so that if you enter a correct password, it takes you to a GUI with functions binded to certain buttons.
|
I don't know of any tutorials... I don't know how you are doing this either, but what you want to look at is the
http redirect method.
So...
Code:
If *evaluate some condition* Then
Response.Redirect("MyAuthenticatedPagePath")
Else
Response.Redirect("AuthenticationDeniedPagePath")
End If