代码如下:
         DataSet ds = ClassLibrary.DA.GetDataSet("XX", XX, XXX);
        ds.Tables[0].Columns.Add();
        GridView1.DataSource = ds;
        GridView1.DataBind();
有一列值在执行存储过程后添加(该列值是从其他地方读取的),我想使用ds.Tables[0].Columns.Add();不知道怎么用,或者有没有更好的方法?