by tfoy » Sat Jul 26, 2008 5:49 pm
One Solution is to Use the Search Form to simulate a Link.
<form action="http://www.yourdomain.com/cgi-domain/sb/productsearch.cgi?storeid=*your store id" method="post">
<input name="Submit" type="submit" class="textButton" value="type button text here" />
<input type="hidden" name="storeid" value="*your store id here" />
</form>
then create a css style
<style type="text/css">
.textButton
{
border-width: 0px;
padding: 0px;
margin: 0px;
background-color: #ffffff;
color: #0033CC;
text-decoration: underline;
}
</style>
you can also you a text link as follows:
<SCRIPT language="JavaScript">
function submitform()
{
document.myform.submit();
}
</SCRIPT>
<form action="http://www.yourdomain.com/cgi-domain/sb/productsearch.cgi?storeid=*your store id" method="post" name="myform" id="myform">
<input type= "hidden" name="search_field" size="1" value="search term here"/>
<A href="javascript: submitform()">Submit</A>
<input type="hidden" name="storeid" value="*your store id here" />
</form>
Tom