我试图在使用SqlDataSource删除后从SQL检索返回值 OnDeleted事件。
protected void OnDeletedLeadACRule(object sender, SqlDataSourceStatusEventArgs e)
{
e.[some code to retrieve the value selected from SQL]
}
例如,在正常情况下,您可以像这样读取返回的值:
DataSet ds = DBcon.db.ExecuteDataSet("GetMachines");
ds.Tables[0].Rows[0][0];