Forum Moderators: open
The problem is that the back button solution does not work with Firefox.
MOre generally, the back button problem seems endemic to some browsers and there doesn't seem to be a good solution.
Anyone have experience with this, or able to accomplish the same thing with a different technique?
[edited by: BlobFisk at 1:54 pm (utc) on June 29, 2004]
[edit reason] Fixed link [/edit]
var oRsElm = document.createElement("script");
oRsElm.src = "myasp.asp?param=" + sValue;
oRsElm.type = "text/javascript";
document.body.appendChild(oRsElm); Works fine in IE5+ and should work in Mozilla etc.
The main limitation is that you can only use the GET protocol and therefore are limited in the amount of data you can send to the server. It can also be a little difficult to debug.
Josh