网站后台搜索程序搜索不出东西来

来源:百度知道 编辑:UC知道 时间:2024/07/02 12:03:37
做了个网站后台搜索功能的程序,却搜索不出东西来,
点“查询”后总是跳转到第一页,而不是要搜索的目标标题页,
大家说,这是怎么回事啊?
相关程序如下:

<%
if request.querystring="" then
response.write "所有新闻"
else
if request("Query")<>"" then
if Title<>"" then
response.write "名称中含有“<font color=blue>" & Title & "</font>”的新闻"
else
response.Write("所有新闻")
end if
else
if BigClassName<>"" then
response.write "<a href='News_Manage.asp?BigClassName=" & BigClassName & "'>" & BigClassName & "</a> >> "
if SmallClassName<>"" then
response.write "<a href='News_Manage.asp?BigClassName=" & BigClassName & "&SmallClassName=" & SmallClassName & "'>" & SmallClassName & "</a>"
else

写法有错误 都不清楚
我空间有详细的多条件搜索文章 希望对你有帮助
http://hi.baidu.com/bludger/

你的查询语句在哪啊???