Hi I wish to return the Output from a Delete stored Proc to a web page and I am new to ASP.NET 2.0 and c#. The SP runs fine I just cannot get the return value of the Ouput parameter the moment. The method SqlDataSource3_Deleted is triggered however it always returns the Default value of the DeleteParameter and not the actual value returned.
In the code behind:
Code:
<asp:GridView ID="GridView1" DataSourceID="SqlDataSource3" AutoGenerateDeleteButton="true" AlternatingRowStyle-BackColor="Aqua" HeaderStyle-BackColor="AntiqueWhite"
runat="server" DataKeyNames="DummyID" Width="375px" AutoGenerateColumns="true" AllowPaging="true" AllowSorting="true">
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" SelectCommandType="StoredProcedure"
SelectCommand="up_admDistiDetails" DeleteCommandType="StoredProcedure" DeleteCommand="up_admDeleteIndividualResellerfromDisti" ConnectionString="<%$ ConnectionStrings:ZebSorTestWeb %>">
<SelectParameters>
<asp:SessionParameter Direction="Input" Type="String" Name="InputTable" SessionField="strInputTable"/>
</SelectParameters>
<DeleteParameters>
<asp:Parameter Name="DummyID" Type="Int32" />
<asp:Parameter Name="MSG" Direction="Output" Type="String" DefaultValue="ThisIsATest"/>
</DeleteParameters>
</asp:SqlDataSource>
In the code behind:
Code:
namespace ZebraSORAdminPages
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string inputTable = Session["strInputTable"].ToString();
string resellerDate = Session["strInputDate"].ToString();
SqlDataSource3.Deleted += new SqlDataSourceStatusEventHandler(SqlDataSource3_Deleted);
}
void SqlDataSource3_Deleted(object sender, SqlDataSourceStatusEventArgs e)
{
string MSG = e.Command.Parameters["@MSG"].Value.ToString();
DeleteMSG.Text = MSG;
}
}
}