View Single Post
Old 02-05-2013, 11:53 AM   PM User | #5
alykins
Senior Coder

 
alykins's Avatar
 
Join Date: Apr 2011
Posts: 1,608
Thanks: 37
Thanked 183 Times in 182 Posts
alykins will become famous soon enough
Quote:
Originally Posted by jack10685 View Post
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
__________________

I code C hash-tag .Net
Reference: W3C W3CWiki .Net Lib
Validate: html CSS
Debug: Chrome FireFox IE
alykins is offline   Reply With Quote