これが私のコードです:
[WebMethod]
public SqlDataReader Cmb_BranchMaster() {
SqlCommand ad1 = new SqlCommand("select * from BranchMaster", conn);
if (conn.State == ConnectionState.Open)
conn.Close();
conn.Open();
SqlDataReader rdr2 = ad1.ExecuteReader();
if (rdr2.HasRows)
{
while (rdr2.Read())
{
// here cmbranchname is my combobox of winforms .. so here in webservice it gievs error
cmbBranchName.Items.Add(rdr2[1].ToString());
}
}
conn.Close();
}
データを返し、私のwinformで使用するにはどうすればよいですか