Var's lost on refresh - help

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Var's lost on refresh - help

    I have pg1 sending 6 vars to page2.

    Page2 uses the 6 vars to pull from an access database the
    fields of a specific tbl. under the sql stmt a function
    displays the records with headers, which will be sortable
    and pgable.

    Problem is this. - The initial load is fine with sortable
    hdrs and pgable pgs.
    BUT when the user clicks on any header to sort or next pg,
    then the vars are lost and the sql stmt is emptied.

    Is there a way to hold the vars, or convert them easily to
    a hardcode type string?

    any help would be greatly appreciated
    Matt Guest

  2. Similar Questions and Discussions

    1. About refresh!!!!
      Hi, In my flex application I have a form and my inserts and update works perfectly fine, except when I try to submit a new record the second...
    2. Refresh and AOL
      Has someone else run into the refresh problem with the AOL servers?? I have a page that is constantly being changed, the AOL server captures the...
    3. load var's -> instruct frame to reload ???
      hello i am trying to use a small 5 second looping flash movie as a way to continously check whether or not an outside variable (supplied by an...
    4. using refresh button on the menu bar to refresh two frames.
      All, I have an ASP site that uses frames two frames. (yes I should be using include files, but we started ou using frames so we have been stuck...
    5. Problem with refresh button breaking automatic refresh
      As a public service, I'm posting the solution to a problem I had. The bizarre thing is that I think this should have created an error. Instead, it...
  3. #2

    Default Var's lost on refresh - help

    I have pg1 sending 6 vars to page2.

    Page2 uses the 6 vars to pull from an access database the
    fields of a specific tbl. under the sql stmt a function
    displays the records with headers, which will be sortable
    and pgable.

    Problem is this. - The initial load is fine with sortable
    hdrs and pgable pgs.
    BUT when the user clicks on any header to sort or next pg,
    then the vars are lost and the sql stmt is emptied.

    Is there a way to hold the vars, or convert them easily to
    a hardcode type string?

    any help would be greatly appreciated
    Matt Guest

  4. #3

    Default Re: Var's lost on refresh - help

    > Is there a way to hold the vars, or convert them easily to
    > a hardcode type string?
    You could pass the variables in a querystring when the user clicks on a
    header name. Or, use session variables to hold the values.



    Randy R Guest

  5. #4

    Default Re: Var's lost on refresh - help

    > Is there a way to hold the vars, or convert them easily to
    > a hardcode type string?
    You could pass the variables in a querystring when the user clicks on a
    header name. Or, use session variables to hold the values.



    Randy R Guest

  6. #5

    Default Re: Var's lost on refresh - help

    Thanks I figured out the session vars - thanks again
    Matt 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