cs is my connection
da is my DataAdapter
ds is my Dataset
MessageBox is declared in a previous class and works correctly.
The stored procedure executes correctly because I have checked my tables in the database that update on the button click. I just want to display the results on my WebApp.
Any suggestions?
Code:
protected void Button2_Click1(object sender, EventArgs e)
{
da.SelectCommand = new SqlCommand("execute spTEST", cs);
cs.Open();
da.Fill(ds);
dg.DataSource = ds.Tables[0];
MessageBox("SUCCESS!");
cs.Close();
}

