Product Comparsion help!!

0 views
Skip to first unread message

alloysmith77

unread,
Jan 18, 2007, 3:07:00 PM1/18/07
to Dreamweaver
The following form code info at the bottom will look up parts within
our recordset hardware category search:
The search form is divided up by search by Part number, by OEM #,
Keyword, and Company Harware Name. I want to add a section to the form
that will allow customers to enter a search by Part Number of 2 to 4
products for a direct side by side comparsion. Just need to what is
needed to proceed with this task. Or if there is a site
that has a tool to do this:


<form name="form1" method="post" action="results.asp">
<table width="624" border="1" align="left">
<tr>
<td width="224" height="45"><span
class="style72">Glemco P/N:
<input name="glemcono" type="text" id="glemcono"
size="23">
</span></td>
<td width="384"><p class="style72">Narrow Search To
This OEM:&nbsp;
<select name="OEM_Search" size="1">
<option value="" selected>None</option>
<%
While (NOT OEM_Search_List_Query.EOF)
%>
<option
value="<%=(OEM_Search_List_Query.Fields.Item("prod_cat").Value)%>"><%=(OEM_Search_List_Query.Fields.Item("prod_cat_desc").Value)%></option>
<%
OEM_Search_List_Query.MoveNext()
Wend
If (OEM_Search_List_Query.CursorType > 0) Then
OEM_Search_List_Query.MoveFirst
Else
OEM_Search_List_Query.Requery
End If
%>
</select>
<br>
</tr>
<tr>
<td height="45"><span class="style72">Keyword:
<input name="keyword" type="text" size="26">
</span></td>
<td><span class="style72"> Narrow Search To This
Hardware: &nbsp;
<select name="hardware_search" size="1">
<option value="">None</option>
<%
While (NOT hardware_category_search.EOF)
%>
<option
value="<%=(hardware_category_search.Fields.Item("prod_cat").Value)%>"><%=(hardware_category_search.Fields.Item("prod_cat_desc").Value)%></option>
<%
hardware_category_search.MoveNext()
Wend
If (hardware_category_search.CursorType > 0) Then
hardware_category_search.MoveFirst
Else
hardware_category_search.Requery
End If
%>
</select>
</span></td>
</tr>
<tr>
<td height="45"><span class="style72">OEM P/N:
<input name="oemno" type="text" size="25">
</span></td>
<td> <span class="style72"><strong>Warning:</strong>
Depending on the OEM or hardware chosen, the search result may require
time to load if no Glemco P/N, Keyword, or OEM P/N are entered.
</span></td>
</tr>
<tr>
<td colspan="2" height="45" bgcolor="#FFFFFF"><div
align="center">
<input type="submit" name="Submit"
value="Submit">
</div>
</tr>
</table>
</form>
.

Reply all
Reply to author
Forward
0 new messages