Hi All
I have added a search feature to every page by just manipulating (but keeping all relevant code) from the search template. please see www.beddingcentres.co.uk
the problem i ma having is that once the search terms have been entered and the person presses search, it fowards them to the bouce page and then back to the original page
this is the code i am using for the search aspect on each page
Any ideas would be most welcome
thanks
I have added a search feature to every page by just manipulating (but keeping all relevant code) from the search template. please see www.beddingcentres.co.uk
the problem i ma having is that once the search terms have been entered and the person presses search, it fowards them to the bouce page and then back to the original page
this is the code i am using for the search aspect on each page
Any ideas would be most welcome
Code:
<form method="get" action="<actinic:variable name="OnlineScriptURL" value="Search Script URL" />"> <input type="hidden" name="RANDOM" value="<actinic:variable name='Random'/>" /><actinic:block if="%3cactinic%3avariable%20name%3d%22PriceSearchIsAllowed%22%20%2f%3e%20and%20%3cactinic%3avariable%20name%3d%22PriceIsEnabled%22%20%2f%3e"> <actinic:variable name="RetailOnlyXml" /> </actinic:block><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#999999"> <tr> <td valign="middle"><img src="quickfind.jpg" width="70" height="20"></td> <td valign="middle"><div align="right"> <input name="SS" type=TEXT value="Enter keywords...." size=32 maxsize=255> </div></td> <td valign="middle"><actinic:variable name="SearchablePropertyList"/> </td> <td valign="middle"><input type=SUBMIT name=ACTION value="Search"></td> </tr></table> </form>
Comment