·您的位置: 首页 » 资源教程 » 编程开发 » ASP » 自己写的一个简单ASP调用存储过程查询

自己写的一个简单ASP调用存储过程查询

类别: ASP教程  评论数:0 总得分:0
本文用到没有用到adodb.command命令,只是简单的做了一个用adodb.recordset来执行存储过程。

存储过程:
\'在SQL中建立dbo.tse存储过程

CREATE PROCEDURE [dbo].[tse]
@keyword varchar(20)=null, \'定义查询的关键字
@choose int=null \'定义查询的类型(1为查询列title,其他为content)
as
if @choose=1
select * from web where title like @keyword + \'%\'
else
select * from web where content like @keyword + \'%\'
return
GO



\'list.asp页
<!--#include file="conn.inc" -->
<%
dim rs
dim sql
dim keyword
dim choose
keyword=request(“keyword“) \'接收页面传送的值
choose=request(“choose“)
set rs=server.createobject("adodb.recordset")
sql="exec tse \'"&keyword&"\',"&choose&"" \'用exec执行tse存储过程,把keyword,choose给存储过程传递参数
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write("没有任何记录!")
response.end
end if
response.write"搜索到的记录如下:<br><br>"
do until rs.eof
response.write""&rs("id")&":"&rs("title")&"" \'打印出文章的ID和标题
response.write"<br><br>"
rs.movenext
loop
\'打扫战场
rs.close
conn.close
set rs=nothing
set conn = nothing
%>
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1