Pelle
03-26-2005, 04:33 AM
I have a frameset containing two frames named "left" and "right". Their src are "left.asp" and "right.asp". In the right frame I have the following code where I send an argument to the left frame (left.asp).
My problem is how I can send the same argument to "right.asp" too. I want "MyArgument" to be sent to both frames by clicking the link, not only "left.asp".
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim MyArgument
MyArgument = request.QueryString("MyVariable")
%>
<html>
<head></head>
<body>
<a href="left.asp?MyVariable=MyArgument">Send MyArgument to left.asp and (if possible) to right.asp</a>
</body>
</html>
My problem is how I can send the same argument to "right.asp" too. I want "MyArgument" to be sent to both frames by clicking the link, not only "left.asp".
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim MyArgument
MyArgument = request.QueryString("MyVariable")
%>
<html>
<head></head>
<body>
<a href="left.asp?MyVariable=MyArgument">Send MyArgument to left.asp and (if possible) to right.asp</a>
</body>
</html>