Auto refresh maintaing query string

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default 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 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. Auto Page Refresh
      Hi, I have a web page which contains content that is frequently updated: http://www.iwsec.co.uk
    2. page auto refresh?
      Is there a way to make a page automatically refresh every 10 seconds? Thanks.
    3. 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...
    4. auto-refresh intervals
      I am looking for some help on how to make a iframe on my http://www.slackinradio.com auto refresh in intervals of 2 minutes and 50 secs. if you...
    5. Auto refresh asp
      Hi All, I want to refresh a page every 5 mins without the users' intervention. I'm not sure that this is possible at all. Do you? Thanks...
  3. #2

    Default Re: Auto refresh maintaing query string

    Change the method of the form from "Post" to "Get" and all form variables will be passed as URL variables.
    stitchy Guest

  4. #3

    Default Re: Auto refresh maintaing query string

    You might also try having the submitted values written to a structure in the
    session scope, then have the second form pull them from there. That way, if
    the page is refreshed, they are still in the session scope.

    VillageX 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