I have this and it works fine:
SqlDataAdapter da = new SqlDataAdapter("SELECT * from tblA; SELECT * from tblB",cs);
I want this:
SqlDataAdapter da = new SqlDataAdapter("spA; spB",cs);
da.SelectCommand.CommandType = CommandType.StoredProcedure;
It says I can only use one stored procedure at a time. How can I use this two queries with two stored procedures?