Classic ASP - ADO execute Stored Procedure passing in parameters
问题 I am needing to pass parameters into a stored procedure with Classic ASP. I do see some people using the Command object and others NOT using it. My sproc params are like this: @RECORD_NUMBER decimal(18,0), @ErrorType nvarchar(100), @INSURANCE_CODE smallint, @CompanyId int, @INS_ID_NUM nchar(22) Then I'm trying to do this: Dim conn, rsSet,rsString, cmd Dim RN,ET,IC,CI,IIN RN = Request.Form("Record_Number") ET = Request.Form("ErrorType") IC = Request.Form("INSURANCE_CODE") CI = Request.Form(