Click to See Complete Forum and Search --> : converting drop down menu to search box...


ogefen1
02-11-2009, 11:50 AM
I have this code, and its working correctly however I need to change how its laid out. Right now users can use this drop down menu to get to a certain page, but instead i need to have them type in a number and then have it go to that page in a new window (as they are PDF files) and if not, display an error. Right now I have


<td width="50%">
<span>Catalog Page:
<br>
<select name="catalogPage" >
<%for i = 1 to 396%>
<option value="<%=i%>.pdf"><%=i%></option>
<%next%>
</select>
<!--<input type="text" name="catalogPage" size="5">-->
&nbsp;<input type="image" border="0" name="imageField2" src="../images/b_search.gif" width="49" height="17"></span>




Thanks a lot for any help you can give me. Im pulling my hair out here...