ben bookey
09-16-2002, 04:34 PM
Dear List,
Here is a good Question I think.
I have developed an asp site application which does not use session variables, but uses the URL to pass values from frames to other frames. This makes my customer very happy because his archaic administrator doesnt allow cookies thru.
However, i am worried. Does passing variables using HTTP have problems, and specifically do Web Proxies cause problems, like I have read on the actual registration page of this very useful site, and if so, how does it cause problems ?
I have pasted my example of passing a value via a URL with Jscript.
regards
Ben
'==============================================
an example of passing a value via url using Jscript,
function func_print()
{
var jsobjNewWindow;
jsobjNewWindow=open("print.asp?JPG=" + CurrentJPG + "&type=print","PrintWindow","toolbar=no,menubar=yes,width=500,height=900");
}
Here is a good Question I think.
I have developed an asp site application which does not use session variables, but uses the URL to pass values from frames to other frames. This makes my customer very happy because his archaic administrator doesnt allow cookies thru.
However, i am worried. Does passing variables using HTTP have problems, and specifically do Web Proxies cause problems, like I have read on the actual registration page of this very useful site, and if so, how does it cause problems ?
I have pasted my example of passing a value via a URL with Jscript.
regards
Ben
'==============================================
an example of passing a value via url using Jscript,
function func_print()
{
var jsobjNewWindow;
jsobjNewWindow=open("print.asp?JPG=" + CurrentJPG + "&type=print","PrintWindow","toolbar=no,menubar=yes,width=500,height=900");
}