Hi,
Can somebody tell me how to reference a command in data enviroment in ASP. FYI, I didn't enabled the scripting object model.


My command cmdInsert that accept parameters is a stored procedure name spInsertFeedback

I've tried this code, but it give me error....and it won't save to database.


<%
set DE=Server.CreateObject("DERuntime.DERunTime")
DE.Init (Application("DE"))

DE.cmdInsertFeedback "First Record"

%>