I have tried this but cannot get it to work. Is this similar to what you had or am I way off. I dont understand what some things are in your example such as
cm.CommandText = "SaveBidderImage"
cm.ActiveConnection = activeconnection
cm.CommandText = "SPName"
cm.CommandType = adCmdStoredProc
This is what I have been trying to use. I am sure its full of errors. I am not sure how to make a connection string
or whatever
dim cn,cmd
Set cn = Server.CreateObject("ADODB.Connection"

Set cmd = Server.CreateObject("ADODB.Command"

cn.Open "MCERegister"
Set cmd.ActiveConnection = cn
cmd.CommandText = "stpInsertMemberStatus"
cmd.CommandType = adCmdStoredProc
' Ask the server about the parameters for the stored proc
cmd.Parameters.Refresh
' Assign a value to the 2nd parameter.
' Index of 0 represents first parameter.
cmd.Parameters(0) = 4
cmd.Parameters(1) = 4
cmd.Parameters(2) = 4
cmd.Parameters(3) = 4
cmd.Execute