Hi there, straight to it!
I have this
param1, param2, and param3 should be values that come from my radgrid.
It is RadGrid1_ItemInserted event so i've clicked Insert. When this insert event is fired i want to execute the stored procedure. The stored procedure needs to be passed the parameters from the radgrid, which i want to specify.
Hope i'm clear enough with my problem.
I have this
protected void RadGrid1_ItemInserted(object source, Telerik.Web.UI.GridInsertedEventArgs e) |
{ |
cknetispservicesDataContext db = new cknetispservicesDataContext(); |
var insertData = db.spInsertData(param1, param2, param3); |
} |
param1, param2, and param3 should be values that come from my radgrid.
It is RadGrid1_ItemInserted event so i've clicked Insert. When this insert event is fired i want to execute the stored procedure. The stored procedure needs to be passed the parameters from the radgrid, which i want to specify.
Hope i'm clear enough with my problem.