SeanKenney
Programmer
What I would like to know is how to pass VBScript variables to a sql stored procedure. As an example:
Is this code right? Please help!
Code:
<%
dim Name
Name = Request.Form("Name")
strSQL = "exec my_proc(" & Name & ")"
Conn.Execute(strSQL)
%>