loading up the next page through C#

fguihen

Junior Contributor
Joined
Nov 10, 2003
Messages
248
Location
Eire
after i have validated that a user is authorised to use my site, how do i load up the next page, (actually a web forum), after a login page, in c# code
 
Are you using Forms authentication? If so you can call the FormsAuthentication.RedirectFromLogin() method to automatically redirect the user to their originally intended page.
 
Back
Top