Hiding specifics in URL when going to the Detail Page(classic ASP)

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

  1. #1

    Default Hiding specifics in URL when going to the Detail Page(classic ASP)

    I'm sure there is a way to do this, but I forgot...

    I'm using the DW "Go To Detail Page" behaviour to display a specific page,
    based on what the user clicks from a list. This works fine. What I need to do
    in to NOT have the resulting URL display what was selected. For example, this
    is the URL after the user clicks the link:

    [url]http://DOMAIN_NAME.com/DetailPage.asp?FIELD_NAME=VALUE[/url]

    For security reasons, I need to have this work without displaying the
    FIELD_NAME=VALUE

    I'm not using a form, so I don't believe GET or POST are the issue.

    Can anyone tell me how to do this?

    Thanks!

    PA Guest

  2. Similar Questions and Discussions

    1. Detail Page
      Hello, my search pages are great. But when I click the Detail page, it only desplays the Details for first record (no matter which record I click)....
    2. Go to next from detail page
      Hi I have a detail page that comes off a search results page and I want to be able to link to the next record in the results list. Does anyone...
    3. Can I open a page as a popup using GOTO DETAIL PAGE
      ok, i have posted this before but i didnt get any response. I have failed to find an answer anywhere else. I want to open a GOTO DETAIL page...
    4. go to detail page help
      hi i have created a search and results page and is working fine the result page displays movie titles and actors etc from this i have created a...
    5. Go to Detail page
      Can anyone tell me the best and easiest way to pass URL parameters when clicking on a forms submit button. If I use the "Go to Detail Page"...
  3. #2

    Default Re: Hiding specifics in URL when going to the Detail Page (classic ASP)

    > I'm using the DW "Go To Detail Page" behaviour to display a specific
    page,
    > based on what the user clicks from a list. This works fine. What I need to
    do
    > in to NOT have the resulting URL display what was selected. For example,
    this
    > is the URL after the user clicks the link:
    >
    > [url]http://DOMAIN_NAME.com/DetailPage.asp?FIELD_NAME=VALUE[/url]
    >
    > For security reasons, I need to have this work without displaying the
    > FIELD_NAME=VALUE
    Security via obscurity? ;o)

    The solution is to not pass the value via a querystring. Can you use a
    server variable, or roundtrip to a database or something?

    -Darrel


    darrel Guest

  4. #3

    Default Re: Hiding specifics in URL when going to the DetailPage (classic ASP)

    Thanks, I guess that would work.

    Storing the querystring value to a cookie would also work, right?

    Which server variable were you referring to?

    Thanks for the reply!

    Paul

    PA Guest

  5. #4

    Default Re: Hiding specifics in URL when going to the Detail Page (classic ASP)

    > Storing the querystring value to a cookie would also work, right?

    Provided the end-user is enabling and accepting cookies.
    > Which server variable were you referring to?
    I dunno...what kind of server-side coding are you using?

    -Darrel


    darrel Guest

  6. #5

    Default Re: Hiding specifics in URL when going to the DetailPage (classic ASP)

    The server side is ASP / vbScript

    Thanks,
    Paul

    PA Guest

  7. #6

    Default Re: Hiding specifics in URL when going to the Detail Page (classic ASP)

    You may need to rethink your architecture. Querystrings shouldn't be an
    issue. Perhaps you could expand on why you need to not show the querystring.

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004


    Julian Roberts Guest

  8. #7

    Default Re: Hiding specifics in URL when going to the DetailPage (classic ASP)

    Jules,

    Thanks for the reply. The reason I don't want the variables shown in the
    address bar is because I can't have people changing the variables (id=3445 to
    id=3667 for example) and being able to access records that aren't theirs.

    As I mentioned, I'm not using forms at all on the main page, the user simply
    clicks a link that represents a "company ID" and displays only that company's
    records. If I were using forms, I would then just use a POST when going to the
    detail page.

    Any suggestions?

    Thank you

    PA Guest

  9. #8

    Default Re: Hiding specifics in URL when going to the Detail Page (classic ASP)

    > Thanks for the reply. The reason I don't want the variables shown in the
    > address bar is because I can't have people changing the variables (id=3445
    to
    > id=3667 for example) and being able to access records that aren't theirs.
    That's security through obscurity = not really secure at all.

    You should be using user profiles of some sort...only items that that user
    has permission to see can be seen. This will make the querystring issue moot
    at that pont.

    That said,

    -Darrel


    darrel Guest

  10. #9

    Default Re: Hiding specifics in URL when going to the DetailPage (classic ASP)

    Darrel,

    I agree, and will do something like this. Thanks

    In the short term while I develop this, I need to at least "band-aid" this and
    somehow hide the values in the address bar. Is there a way to do this? If so,
    please let me know. Otherwise, thanks for all the help, I do appreciate it.



    PA Guest

  11. #10

    Default Re: Hiding specifics in URL when going to the Detail Page (classic ASP)

    Are you doing any filtering on the results page? If so, you could apply a
    similar filter on the details page.

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004



    Julian Roberts 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