quick search won't work! please help

mazer

New member
Local time
Today, 04:39
Joined
Aug 19, 2005
Messages
8
I have a quick search on my site and it wont work any more and I cant figure out what is wrong with it? the search uses two check boxes, one for cards and one for comics and all the info is in an access bd with two tables. I'm totally new to all this so I cant figure out what I did wrong
here is the form
Code:
 <TD ALIGN="CENTER" HEIGHT="89" WIDTH="330"><font size="4" font color="#FF0000"><b>Quick Search of our Inventory</b></font>                      
					<FORM NAME="searchform" ACTION="./html/quick_search_results.asp" METHOD="get">
                 <INPUT TYPE=TEXT NAME="searchvalue" VALUE="" SIZE=18 MAXLENGTH=26>
                 <INPUT TYPE=SUBMIT NAME="search" VALUE="Search"><br>
                 <INPUT TYPE=CHECKBOX NAME="card" onClick="uncheckcomic()"><FONT COLOR="#FFFFFF">Cards</FONT>
                 <INPUT TYPE=CHECKBOX NAME="comic" onClick="uncheckcard()"><FONT COLOR="#FFFFFF">Comics</FONT><BR>
                </FORM>
                 </TD>
The query string is
Code:
<script>
<!--
function uncheckcomic(){
	document.searchform.comic.checked=false
}
function uncheckcard(){
	document.searchform.card.checked=false
}
-->
</script>

CAN SOMEONE PLEASE HELP ME WITH THIS, I'M TOTALLY CRACKING UP TRYING TO FIGURE THIS OUT
 
Last edited:
Have you tried posting this problem in the ASP and ASP.NET forum?
 

Users who are viewing this thread

Back
Top Bottom