Im guessing you could send a hidden variable (using a form) when they click update, telling the opened page what page they were on, then when they press ok, the hidden variable is sent back telling the table to go to page 7.
If it uses a querystring then this method could work, because you could request.querystring("pageno") = ASPVariable
then when they press ok, its a form, that has this init, <input name="postback" type="hidden" value="1"> and <input name="pagenumber" type="hidden" value=" & ASPVariable & ">
then you could place at the top of the main tables page you could have something like this..
<% if request.form("postback")= 1 then
request.form("pagenumber") = ASPVariable2
Response.Redirect "?page=table&pageno= & ASPVariable2 & "
end if %>
Im not sure if that would work, but its an idea... im not a very advanced asp coder my self, so im not even sure if that would work to be honest, but if it does them gives a email at ,
thanks
Banksie
Last edited by Banksie; August 17th, 2013 at 09:40 AM..
Reason: remove email
|