This topic is locked

Calling stored procedures

12/13/2005 9:40:17 AM
ASPRunnerPro General questions
E
EliZendon author

I'm working with a SQL Server databse, how would I call my own "insert_new_record" stored procedure from the Add New Record page? Is this possible??

Sergey Kornilov admin 12/15/2005

Hi,
ASPRunnerPro uses ADO to insert records, so it's impossible to provide your custom SQL for this.
However you can completely rewrite ASPRunner record inserting procedure.

It's located in ..._add.asp file and starts with:

rs.AddNew



and ends with:

rs.Update

E
EliZendon author 12/16/2005

Hi,

ASPRunnerPro uses ADO to insert records, so it's impossible to provide your custom SQL for this.
However you can completely rewrite ASPRunner record inserting procedure.

It's located in ..._add.asp file and starts with:
and ends with:


Thanks...