首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴meimeida的代码贴全部
private void getdata(string sql)
    {
        DataSet result = new DataSet();
        result = new Class1().hsggetdata(sql);
        if (result != null)
        {

            if (result.Tables[0].Rows.Count > 0)
            {
                DataGrid1.DataSource = result.Tables[0];
                DataGrid1.DataBind();
                Label1.Text = "以上数据中共" + result.Tables[0].Rows.Count+"条";
......................
阅读全部 | 2015年5月22日 01:27
1
meimeida