Site içi aramada problem yaşıyorum. Maxweb tabanlı sitemde site içi ara modülüne bir kelime ara dediğimizde forum sayfası açılıyor. inc_site_ search.asp içeriği aşağıdadır...
inc_site_search.asp
<%
'<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
'<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
'<> Copyright (C) 2004-2005 Tom Nance (SkyDogg) All Rights Reserved
'<> Events Suite Copyright (C) 2004-2005 Ken Smiley All Rights Reserved
'<>
'<> By using this program, you are agreeing to the terms of the
'<> GNU General Public License.
'<>
'<> This program is free software; you can redistribute it and/or
'<> modify it under the terms of the GNU General Public License
'<> as published by the Free Software Foundation; either version 2
'<> of the License, or any later version.
'<>
'<> All copyright notices regarding MaxWebPortal must remain intact
'<> in the scripts and in the outputted HTML.
'<> The "powered by" text/logo with a link back to
'<>
http://www.maxwebportal.info in the footer of the pages MUST
'<> remain visible when the pages are viewed on the internet or intranet.
'<>
'<> Support can be obtained from support forums at:
'<>
http://www.maxwebportal.info'<>
'<> Email:
maxweb@maxwebportal.info'<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
'<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
'***********************************************************************
'** Copyright (C) 2001 - 2003 Max Yuan All Rights Reserved
'**
'** By using this program, you are agreeing to the terms of the
'** GNU General Public License.
'**
'** This program is free software; you can redistribute it and/or
'** modify it under the terms of the GNU General Public License
'** as published by the Free Software Foundation; either version 2
'** of the License, or any later version.
'**
'** All copyright notices regarding MaxWebPortal must remain intact
'** in the scripts and in the outputted HTML.
'** The "powered by" text/logo with a link back to
'**
http://www.maxwebportal.com in the footer of the pages MUST
'** remain visible when the pages are viewed on the internet or intranet.
'**
'** Support can be obtained from support forums at:
'**
http://www.maxwebportal.com'**
'** Email:
maxwebportal@hotmail.com'** ICQ: 148111300
'***********************************************************************
'############# by PCAKen Version 1.1a - 02/29/04 ##########
%>
<script language="JavaScript">
<!-- hide from JavaScript-challenged browsers
function RefreshS() {
if (document.SearchForm.news.checked) {
window.location ="search.asp?mode=news";
} else {
window.location ="search.asp";
}
}
function checklength() {
if (document.form1.search.value.length < 3) {
alert('Lütfen en az 3 karakterden oluşan bir kelime yazın.');
return false;
}
}
function memberlist() { var MainWindow = window.open ("pop_memberlist.asp?pageMode=search", "","toolbar=no,location=no,menubar=no,scrollbars=yes,width=300,height=500,top=100,left=100,status=no"); }
// done hiding -->
</script>
<%
mwpThemeTitle= "Site içi Arama"
mwpThemeBlock_open()%>
<form name="form1" action="site_search.asp" method="post" id="form1" onsubmit="return checklength()">
<tr>
<td align="center"><font face="<%= strDefaultFontFace %>" size="<%= strDefaultFontSize %>">
Sitede Ara:</font>
<input type="text" name="search" size="20" value="">
<input type="submit" value=" Ara " id=submit1 name=submit1 class="button">
</td>
</tr>
<tr>
<td align="middle">
<p align="center"><font face="<%= strDefaultFontFace %>" size="<%= strFooterFontSize %>">
Arama Yeri:
<input type="radio" value="30" checked name="num">Sitede  <input type="radio" name="num" value="40">Google'da </font>
</td>
</tr>
</form>
<%mwpThemeBlock_close()%>