MarkWilliamson
Programmer
I have a form with an INPUT TYPE = BUTTON control which calls a popup page to be displayed( my.asp ). The page displayed but I cannot display anything using the request.querystring. My input string is below and my asp is also included. Any suggestions would be greatly appreciated !!
<input type="BUTTON" Value="Select Name" Name=SelectDate OnClick="popup('MY.asp?SelectDate','pagename','640','480','center','front');">
MY.ASP
------
<%@ Language=VBScript %>
<html> <head>
</head>
<body bgcolor=FFFF00 link = 3300FF vlink = AA0000>
<% response.Write request.querystring %>
</body>
</html>
<input type="BUTTON" Value="Select Name" Name=SelectDate OnClick="popup('MY.asp?SelectDate','pagename','640','480','center','front');">
MY.ASP
------
<%@ Language=VBScript %>
<html> <head>
</head>
<body bgcolor=FFFF00 link = 3300FF vlink = AA0000>
<% response.Write request.querystring %>
</body>
</html>