|
-
Jun 4th, 2007, 01:16 AM
#1
Thread Starter
Addicted Member
Security
For e.g i have a login PAGE and a reservation page.
how can i secure the Reservation page to prevent user from going into the web by typing the Web Name. e,g Reservation.aspx
-
Jun 4th, 2007, 10:55 AM
#2
Re: Security
Plenty of documentation here and here
-
Jun 4th, 2007, 11:03 AM
#3
Re: Security
In the page_Load event, run a simple check:
If Not User.Identity.IsAuthenticated Then
Response.Redirect("login.aspx")
End If
-
Jun 9th, 2007, 11:16 AM
#4
Thread Starter
Addicted Member
Re: Security
Is there Any Simplier Way of Coding this Security Stuff? my Friend is the one who need this and he is quite new to .nEt . Any help gathered here will be much Appreciated
-
Jun 11th, 2007, 04:50 AM
#5
Re: Security
Have you actually looked at the code/links they gave?
That's pretty much the way to do it. Doesn't get any simpler than that.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|