Forums
This topic is locked
Creating searches within frames.
Posted 29 Oct 2004 13:04:32
1
has voted
29 Oct 2004 13:04:32 kirsty burgoine posted:
I'm trying to create a product search within a frameset. I have the search criteria in a side frame and I want the results to appear in the main frame. I've tried targeting the main frame but it just seems to open a new window for the results.
I'm using Ultradev 4 and Microsoft Access 2000. I hope someone can help.
Kirsty
Edited by - kirstyb on 29 Oct 2004 13:06:21
Replies
Replied 29 Oct 2004 13:18:17
29 Oct 2004 13:18:17 Janusz Jasinski replied:
what code have u got at the moment? tried googling for help - there seems to be a lot of resources available
Yup - janusz.co.uk
Yup - janusz.co.uk
Replied 29 Oct 2004 13:43:31
29 Oct 2004 13:43:31 kirsty burgoine replied:
Sorry, forgot to add that bit.
This is the code I have for a dropdown menu that displays brand names. Its placed in a side from and I want the results page to open in the main frame.
<form name="form1" method="get" target="main" action="menuresults.asp">
<select name="mnuBrand">
<%
While (NOT rsDropdown.EOF)
%>
<option value="<%=(rsDropdown.Fields.Item("Brand_Name".Value)%>" ><%=(rsDropdown.Fields.Item("Brand_Name".Value)%></option>
<%
rsDropdown.MoveNext()
Wend
If (rsDropdown.CursorType > 0) Then
rsDropdown.MoveFirst
Else
rsDropdown.Requery
End If
%>
</select>
<br>
<input type="submit" name="Submit2" value="Search">
</form>
Kirsty
This is the code I have for a dropdown menu that displays brand names. Its placed in a side from and I want the results page to open in the main frame.
<form name="form1" method="get" target="main" action="menuresults.asp">
<select name="mnuBrand">
<%
While (NOT rsDropdown.EOF)
%>
<option value="<%=(rsDropdown.Fields.Item("Brand_Name".Value)%>" ><%=(rsDropdown.Fields.Item("Brand_Name".Value)%></option>
<%
rsDropdown.MoveNext()
Wend
If (rsDropdown.CursorType > 0) Then
rsDropdown.MoveFirst
Else
rsDropdown.Requery
End If
%>
</select>
<br>
<input type="submit" name="Submit2" value="Search">
</form>
Kirsty