4

我已经制作了一个具有此代码的网络服务

static SqlConnection conn = new SqlConnection(ConfigurationSettings.AppSettings["Connection"].ToString());

[WebMethod]
public DataSet SQLBranchMaster() {

    String Load = "SELECT * FROM BranchMaster";
    conn.Open();
    SqlDataAdapter adapt = new SqlDataAdapter(Load,conn);
    DataSet ds = new DataSet();
    adapt.Fill(ds);
    conn.Close();
    return ds;

}

现在在 Windows 窗体上我的代码是

  dataGridView1 = new DataGridView();

// Service is my Webserive class name
// myservice is my reference added in the Winforms

myservice.Service test = new myservice.Service();
dataGridView1.DataSource = test.SQLBranchMaster();

现在怎么办?当我运行表单时没有显示

4

1 回答 1

4

您正在从服务方法返回数据集,因此将表绑定到 DataGridview 因此,请确保将 DataGridview 正确添加到表单控件集合中(最好在表单 UI 中手动拖放控件),然后使用以下方式绑定它。

myservice.Service test = new myservice.Service();
DataSet ds= test.SQLBranchMaster();

if (ds.Tables.count > 0)
{
dataGridView1.DataSource = ds.Tables[0];
}
于 2013-03-07T14:42:49.760 回答