===ASP.NET中使用存储过程访问数据库得到的结果不对!~高手帮忙===代码如下:
private void Page_Load(object sender, System.EventArgs e)
{
SqlConnection DbConnection = new SqlConnection("server=localhost; uid=sa; password=; database=mydatabase; ");
  SqlCommand command = new SqlCommand();
command.Connection=DbConnection;
command.CommandType=CommandType.StoredProcedure;
command.CommandText="chucungc";
DbConnection.Open();
int rowsAffected = command.ExecuteNonQuery();
Label1.Text= Convert.ToString(rowsAffected);
            
SqlDataAdapter daPubs;
daPubs = new SqlDataAdapter();
            daPubs.SelectCommand = command;
            DataSet dsPubs;
dsPubs = new DataSet();
daPubs.Fill( dsPubs );
DataGrid1.DataSource = dsPubs.Tables[0]; }LABEL1输出的结果为 -1,其实数据库中有14条记录,怎么办呢