您的位置:首页技术开发ASP技巧 → 使用索引服务器 - 创建ASP页面

使用索引服务器 - 创建ASP页面

时间:2004/11/7 4:10:00来源:本站整理作者:蓝点我要评论(0)

创建ASP页面



  在ASP页面上一切都变得非常酷。你用表单中的值来驱动对索引服务器进行查询的对象。



整个过程是这样的:



◆ 打开记录集。

◆ 用标准ADO 方法,一步步地走过记录集。



<%

"Create a Query object, initialize it using

"SetQueryFromURL, and dump the object state



"set the query object

Set objQuery = Server.CreateObject("ixsso.Query")



"get the query properties set from the

"incoming URL (from the form GET operation)

objQuery.SetQueryFromURL(Request.QueryString)



"tell the object what columns to include

objquery.columns="filename,HitCount,vpath,DocTitle,characterization"



"open the recordset, causing the query to be

"executed

set rsQuery = objquery.createrecordset("nonsequential")



"now, if rsquery.eof is not TRUE, then we have results

"to show. If it IS TRUE, no results were found.



"get the page out for the user...

%>











Search Results



A maximum of 200 results will be returned, 20 hits per page will be shown.



<%

if not rsquery.eof then

Response.Write rsquery.recordcount & " hit(s) were found. "

if rsquery.recordcount > 30 then

Response.Write "You may want to refine your query."

end if

Response.Write "
"

end if

%>



<%

if not rsquery.eof then

while not rsquery.eof and rowcount > 0

if rsquery("doctitle") <> "" then

Response.Write "

" & rsquery("doctitle") & "
"

response.write "" & rsquery("characterization") & "...
"

Response.Write "" & rsquery("hitcount") & " hit(s)

"

end if

rowcount = rowcount - 1

rsquery.movenext

wend

Response.Write "

"

%>





<%

else

%>





对不起,没有发现纪录,如果要查询两个以上的词,使用and或or。





<%

end if

%>













  你需要做的第一件事就是建立对索引服务器对象的引用。这是通过使用server.creatobject方法来完成的:





Set objQuery = Server.CreateObject("ixsso.Query")   

作者/出处:青苹果工作室


相关阅读 Mac访问Windows共享文件夹Windows 7正版系统验证方法windows 8.1系统版本号查看方法Windows 8.1系统电话激活时无法输入微软返回代码解决方法Windows 8如何调整屏幕分辨率windows8.1磁盘占用100%解决方法Mac双系统如何删除Boot Camp安装的Windows分区Apple教你如何在Mac 上运行 Windows

文章评论
发表评论

热门文章 没有查询到任何记录。

最新文章 VB.NET 2005编写定时关 Jquery get/post下乱码解决方法 前台gbk gb如何使用数据绑定控件显示数据ASP脚本循环语句ASP怎么提速

人气排行 轻松解决"Server Application Error"和iis"一起学习DataGridView调整列宽用ASP随机生成文件名的函数Jquery get/post下乱码解决方法 前台gbk gbODBC Drivers错误80004005的解决办法返回UPDATE SQL语句所影响的行数的方法用Javascript隐藏超级链接的真实地址两个不同数据库表的分页显示解决方案