Call custom stored procedure

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
dire
User
Posts: 41

Call custom stored procedure

Post by dire »

Hi,

I need an advice on how to call custom stored procedure on MSSQL.

On table Offer is field with offer number (1000)
custom filed "count" on table Offer with specific number (100)

I want to call stored procedure on MSSQL, which will generate 100 offers starting from 1000.

So I need custom button to call store procedure with these two parameters.

I think in server Events->Table-Specific custom function with ew_Execute?


Webmaster
User
Posts: 9425

Post by Webmaster »

  1. To add a custom action button, read help file topic: Server Events and Client Scripts -> Table-Specific -> List Page -> Page_Load / Row_CustomAction
  2. To execute a stored procedure, read help file topic: Server Events and Client Scripts -> Some Global Objects and Methods -> ew_Execute. Also read:
    http://www.hkvforums.com/viewtopic.php?f=7&t=40119

Post Reply