Results 1 to 5 of 5

Thread: Security

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jun 2006
    Posts
    128

    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

  2. #2
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724

    Re: Security

    Plenty of documentation here and here

  3. #3
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Security

    In the page_Load event, run a simple check:
    If Not User.Identity.IsAuthenticated Then
    Response.Redirect("login.aspx")
    End If

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Jun 2006
    Posts
    128

    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

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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
  •  



Click Here to Expand Forum to Full Width