it doesnt work still
Arguments are of the wrong type, are out of acceptable range, or ...
<!--#include file="conn.asp"-->
<%
Set cmd=server.Crea teObject("ADODB .Command")
cmd.CommandType =4
cmd.ActiveConne ction=baglantim
cmd.CommandText = "st_myfrien ds"
cmd.Parameters. Append
cmd.CreateParam eter("@UserId", adNumeric, adParamInput, ,50)
Set objRS = objCommand.Exec ute
%>
cmd.CommandType =4
or
cmd.CommandType =adCmdStoredPro c
both gives same error
Arguments are of the wrong type, are out of acceptable range, or ...
<!--#include file="conn.asp"-->
<%
Set cmd=server.Crea teObject("ADODB .Command")
cmd.CommandType =4
cmd.ActiveConne ction=baglantim
cmd.CommandText = "st_myfrien ds"
cmd.Parameters. Append
cmd.CreateParam eter("@UserId", adNumeric, adParamInput, ,50)
Set objRS = objCommand.Exec ute
%>
cmd.CommandType =4
or
cmd.CommandType =adCmdStoredPro c
both gives same error
Comment