File: D:/web/vintagedoorknobs/inc-template-search.asp
<%
' --- START OF SEARCH TEMPLATES --- '
' (SS,17/1/13) added ending / to input tag of cbsubcat
' (SS,13/8/14) bootstrap version
' (SS,1/3/14) replaced form tags with div (because there's already the frmSearch form outside this,
' had to adjust padding and margin and add margin-top of 10px to make it behave as before
Sub ShowSearchMain(ASearchDefault, ASelectComboHTML)
%>
<!-- START OF SEARCH -->
<div class="navbar-form" role="search" style="margin: 0px; padding: 0px; margin-top: 10px">
<div class="input-group">
<input type="hidden" name="cbsubcat" value="" />
<input type="text" class="form-control" placeholder="Search..." name="search" id="search">
<div class="input-group-btn">
<button class="btn btn-default" type="button" onclick="itp_search()"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</div>
<%
End Sub
' --- END OF SEARCH TEMPLATES --- '
ShowSearch
%>