|
Posted by SysAdmin07 on 02/20/07 14:02
On Feb 19, 8:51 pm, dorayme <doraymeRidT...@optusnet.com.au> wrote:
> In article
> <1171934432.633965.250...@h3g2000cwc.googlegroups.com>,
>
> "SysAdmin07" <syablin...@gpcfb.org> wrote:
> > Hi, Everyone,
>
> > I'm attempting to create a webpage with a search function. It
> > consists of 3 frames (one for the search box, one for the results, and
> > one to maintain a list of the last few searches). I'm currently
> > having problems passing the search terms to a different frame so that
> > someone can see their last few searches. If anyone has any ideas, I'd
> > appreciate them.
>
> > Thanks.
>
> Why don't you put up your best shot in a url?
>
> --
> dorayme
Okay, here goes:
The code below is a chunk from my search page.
//Code Begin
<body>
<form TARGET="mapFrame" METHOD="POST" ACTION="results2.cfm">
<table width="266" cellpadding="1" cellspacing="3">
<tr><td colspan="3"><span class="style1 style1">Enter city (without
the state) or zip code </span></td>
<tr>
<td width="154"><input type="TEXT" name=area size="25" /></
td>
<td width="56"><input name="submit" type="submit"
value="Search" /></td>
<td width="40"><input name="RESET" type="RESET"
value="Reset" /></td>
</table>
</form>
//Code End
As you can see here, I am outputting the search results to
"results2.cfm," which is in a frame called "mapFrame." However, I
have another frame that I'd like to list the search terms typed in
from the search box above. It's called resultsFrame.cfm and
currently, it's just skeleton code, as I have yet to figure out how to
do this.
Thanks in advance for any help.
Navigation:
[Reply to this message]
|