asp

位置:IT落伍者 >> asp >> 浏览文章

ASP调用存储过程源码示例


发布日期:2020年02月09日
 
ASP调用存储过程源码示例

ASP调用存储过程源码示例

以下是代码

<%@LANGUAGE=VBSCRIPTCODEPAGE=%>

<%

Setconn=CreateObject(ADODBConnection)

strCon=Provider=SQLNCLI;Password=sa;PersistSecurityInfo=True;UserID=sa;InitialCatalog=Northwind;DataSource=

connOpenstrCon

Setcmd=ServerCreateObject(ADODBCommand)

withcmd

ActiveConnection=conn数据库连接字串

CommandText=test指定存储过程名

CommandType=表明这是一个存储过程

Prepared=true要求将SQL命令先行编译

ParametersappendCreateParameter(@val)

ParametersappendCreateParameter(@val)

Execute

ResponseWrite(cmd()&_&cmd())个output都出来了

Setrs=Execute

endwith

whilenotrseof

responseWrite(rs()&<br/>)

rsmovenext

wend

%>

上一篇:ExtAspNet页面跳转的方法

下一篇:通过启动脚本来感受ASP的无穷力量