What is the best way to code a search for my website developed in tapestry?
I have the following code in my layout.tml:
<div id="search" >
<form method="get" action="#">
<div>
<input type="text" name="s" id="search-text" value="" />
<input type="submit" id="search-submit" value="GO" />
</div>
</form>
I am just unsure of how to actually implement the search. If anyone can help or point me in the right direction it would be greatly appreciated.