Posted by LetMeDoIt on 10/24/07 21:00
OK, it's 'almost' working but not quite there yet. I'm expecting to
see data returned in in strURL or in "search". this is my code:
file is called button.asp:
<form action="<%= strURL %>" method="get">
<input name="search" value="<%=strSearch%>"
onClick="parent.frames[1].location='retrieve.asp';" />
<input type="submit" />
</form>
and the retrieve.asp file contains :
....
strURL = Request.ServerVariables("URL")
Response.Write "VALUE IS... " & search & "<br />"
....
nothing is being returned in strURL... what am I doing wrong? Many
THanks.
[Back to original message]
|