Hi list,
this might not be Rebol related directly, but since I intend to use the info
for a rebol script I guess it's ok. Anyways, here we go.
There's a page with a search form, and I'd like to know what the POSTed URL
look like. The source goes something like this:
<FORM ACTION="search.asp" method=post target="rightframe" NAME=frmSearch>
<TD width=15 height=1></TD>
<TD><INPUT TYPE="text" SIZE=11 NAME=word></TD>
<TR>
<TD></TD><TD><INPUT TYPE="radio" NAME="search"
VALUE="actor" CHECKED>
<IMG SRC="Actor.gif"></TD>
</TR>
<TD></TD><TD><INPUT TYPE="radio" NAME="search"
VALUE="title">
<IMG SRC="title.gif"><INPUT TYPE=image
SRC="search.gif" BORDER=0 ALT="Search"></TD>
</FORM>
Of course, I tried to (naive as I am), to post an url that has the form data
like this: http://blaaah.com/search.asp?title=blaaah
but this isn't the right one. Is there any way I can instead of performing
the search just see the url?
Any info appreciated
//Regards Stefan