1、最简单的如下 Dim objConn Set objConn = Server.CreateObject(“ADOBD.Connection”) objConn.Open Application(“Connection_String”) ‘Call the stored procedure to increment a counter on the page objConn.Execute “exec sp_AddHit” 没有参数,没有返回,没有错误处理,就是这个了 2、带参数的一种调用 objConn.Execute
暂无评论