Validation to protect a page...help needed!

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Validation to protect a page...help needed!

    Hi. Using ASP/Acsess/VBscript I need a validation or something to prevent
    that a user who is logged in on my system with usename and password -
    MM_Username - dont 'Cut and Paste' a specified link in the browser to acsess a
    another page. The user must instead navigate through 2 other secure pages to
    get acsess to this page - page number 3 in the line. (In other words; I must
    be sure that user have been visiting page number 2 before he is automatic
    redirected to page number 3. Not 'jump' to page number 3 from page number 1
    with the cut and paste method. All users are already logged in with username
    and password. ) Is this possible? Bjorn.

    btn Guest

  2. Similar Questions and Discussions

    1. problem with validation of css page
      Hi all why can't I validate this page with w3c, here is the page /* CSS Document */ @charset "iso-8859-1"; @media all { body { font-family:...
    2. Where in the page lifecycle does validation occur?
      Hi all, I don't use auto postbacks on my web site to keep it javascript-free and browser agnostic. Whenever there's a postback to my page I'm...
    3. Validators and Page validation
      My page is not receiving any validators that I have added to the page during PageIndexChanged event. If I call the same piece of code from some...
    4. How to password protect a page?
      I have a set of bulletins in a new site that the client wants protected. He wants the visitor to enter a password to access the bulletin index page...
    5. Using Validation Controls with Page.ParseControl
      Hi, I'm playing around with the possibilities of Page.ParseControl. I parse a string with an input-field and an RequiredFieldValidator-control. ...
  3. #2

    Default Re: Validation to protect a page...help needed!

    It is possible.
    Thinking quickly, you could append another Session variable to exists when
    they visit the pages. Therefore, if 2 out of 3 session vars don't exist it
    will redirect them back to a page you choose.

    Hope that helps.


    "btn" <webforumsuser@macromedia.com> wrote in message
    news:d0adt9$79$1@forums.macromedia.com...
    > Hi. Using ASP/Acsess/VBscript I need a validation or something to
    > prevent
    > that a user who is logged in on my system with usename and password -
    > MM_Username - dont 'Cut and Paste' a specified link in the browser to
    > acsess a
    > another page. The user must instead navigate through 2 other secure pages
    > to
    > get acsess to this page - page number 3 in the line. (In other words; I
    > must
    > be sure that user have been visiting page number 2 before he is automatic
    > redirected to page number 3. Not 'jump' to page number 3 from page number
    > 1
    > with the cut and paste method. All users are already logged in with
    > username
    > and password. ) Is this possible? Bjorn.
    >

    Anthony Brown Guest

  4. #3

    Default Re: Validation to protect a page...help needed!

    Use the User Authentication suite built in DW if you are using ASP.or JSP or ColdFusion.
    Combine the Log In User with the Restrict Access To Page
    Felix1 Guest

  5. #4

    Default Re: Validation to protect a page...help needed!

    Bjorn

    This is quite possible. The best method is to check that the http - referrer
    reference on page 3 is page 2 otherwise throw them to page 1. The exact code
    will depend upon the server model being used.

    FYI a pasted URL does not have a referrer so will alway fail the test.


    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "btn" <webforumsuser@macromedia.com> wrote in message
    news:d0adt9$79$1@forums.macromedia.com...
    > Hi. Using ASP/Acsess/VBscript I need a validation or something to
    prevent
    > that a user who is logged in on my system with usename and password -
    > MM_Username - dont 'Cut and Paste' a specified link in the browser to
    acsess a
    > another page. The user must instead navigate through 2 other secure pages
    to
    > get acsess to this page - page number 3 in the line. (In other words; I
    must
    > be sure that user have been visiting page number 2 before he is automatic
    > redirected to page number 3. Not 'jump' to page number 3 from page number
    1
    > with the cut and paste method. All users are already logged in with
    username
    > and password. ) Is this possible? Bjorn.
    >

    Paul Whitham TMM Guest

  6. #5

    Default Re: Validation to protect a page...help needed!

    .oO(Paul Whitham TMM)
    >This is quite possible. The best method is to check that the http - referrer
    >reference on page 3 is page 2 otherwise throw them to page 1.
    The referrer is not always available, never rely on it.

    Micha
    Michael Fesser Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139