Maintain query string and somehow auto refresh a pagewith that string intact

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Maintain query string and somehow auto refresh a pagewith that string intact

    I have a drill down where on page one the user selects criteria to narrow down
    the search for a speicific group of employees(like all hired between day1 and
    day 10)
    OK then they hit submit and a list is created from the db from the parameters
    they selected. Now this list has the emp. names as hyperlinks and you can
    click that name and it takes you to that employees main info page and here
    comes the problem......if you hit the back button I get this IE error message:
    -----------------------------------

    Warning: Page has Expired The page you requested was created using information
    you submitted in a form. This page is no longer available. As a security
    precaution, Internet Explorer does not automatically resubmit your information
    for you.

    To resubmit your information and view this Web page, click the Refresh button.
    -------------------------------------

    I need to make it so that it recalls the last page in history and allows users
    to go back in the browser. It needs to maintain the query string that was
    created from page one(the page where they selected the dates to search within)
    and refresh the dynamically created list of emp's based on page one criteria.
    Sorry if this is not making sense. Any help is greatly appreciated


    Newkirk Guest

  2. Similar Questions and Discussions

    1. query string
      hi there, i'm working on a very simple flash data integration project, i have been trying to send a query string without opening/reloading a...
    2. Auto refresh maintaing query string
      I have a drill down where on page one the user selects criteria to narrow down the search for a speicific group of employees(like all hired between...
    3. Cannot create an object of type 'System.String[]' from its representation 'String[] Array'
      Hello, I am designing a .net custom control in VS.net 7.1 and my control exposes an array of strings which are supposed to be the items to show. To...
    4. String question: Returning portion of string with words surrounding highlighted search term?
      I'm looking to find or create an ASP script that will take a string, examine it for a search term, and if it finds the search term in the string,...
    5. Using NOT LIKE in Query String????
      OK, I know how to use to pull up all records that contains the keyword, but what about not containing the keyword? I've tried NOT LIKE but i get ...
  3. #2

    Default Re: Maintain query string and somehow auto refresh a page with that string intact

    how about if you did a link that referred to the
    back button as:

    <a href='#cgi.http_referer#?#cgi.query_string#'>Go Back and Try again</a>

    (may need to place inside <cfoutput> tags)

    --
    Tami
    aka DixieGal

    **************************
    The brain is a wonderful organ. It starts working the moment you get up in
    the morning
    and does not stop until you get into the office.
    --Robert Frost
    **************************

    "Newkirk" <webforumsuser@macromedia.com> wrote in message
    news:cvqr9s$7gf$1@forums.macromedia.com...
    | I have a drill down where on page one the user selects criteria to narrow
    down
    | the search for a speicific group of employees(like all hired between day1
    and
    | day 10)
    | OK then they hit submit and a list is created from the db from the
    parameters
    | they selected. Now this list has the emp. names as hyperlinks and you can
    | click that name and it takes you to that employees main info page and here
    | comes the problem......if you hit the back button I get this IE error
    message:
    | -----------------------------------
    |
    | Warning: Page has Expired The page you requested was created using
    information
    | you submitted in a form. This page is no longer available. As a security
    | precaution, Internet Explorer does not automatically resubmit your
    information
    | for you.
    |
    | To resubmit your information and view this Web page, click the Refresh
    button.
    | -------------------------------------
    |
    | I need to make it so that it recalls the last page in history and allows
    users
    | to go back in the browser. It needs to maintain the query string that was
    | created from page one(the page where they selected the dates to search
    within)
    | and refresh the dynamically created list of emp's based on page one
    criteria.
    | Sorry if this is not making sense. Any help is greatly appreciated
    |
    |

    DixieGal 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