Like to make it possible that you can search O´Neill on our homepage and MS-SQL error the search/page.
What do we need to add to our Searchfield to allow this ? Here our search page today:
<%
if request("ArticleNo")<>"" then
ArticleNo = request("ArticleNo")
else
ArticleNo = "Artikel Nr."
end if
if request("search")<>"" then
search = request("search")
if IsNumeric(search) then
ArticleNo = search
search = "Freitextsuche"
end if
<script language="javascript" type="text/javascript">
$(function () {
function initPage() {
$('#search').attr('value', '<% = search %>');
doSearch();
</script>
<td>
<input id="search" name="search" type="text" size="20" class="search2 rounded" onBlur="if(this.value=='')this.value='Freitextsuche';" onFocus="this.value='';" value="" />
</td>
Our community of experts have been thoroughly vetted for their expertise and industry experience.