how can I convert dataset to string from webservice

Joined
Dec 15, 2008
Messages
1
Reaction score
0
this is from my webservice
[WebMethod]
public DataSet show()
{
String con = WebConfigurationManager.ConnectionStrings["thuy"].ToString();
SqlConnection sqlcon = new SqlConnection(con);
SqlDataAdapter da = new SqlDataAdapter("Select BranchName from branch", sqlcon);
DataSet ds = new DataSet();
da.Fill(ds, "branch");
return ds;
}

protected void Page_Load(object sender, EventArgs e)
{
Service s = new Service();
DataSet ds = s.show();
DropDownList1.DataSource = ds.Tables[0];
DropDownList1.DataBind();
}

and my Dropdowlist show:System.Data.DataRowView
Can you hep me please

Thuy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,015
Latest member
AmbrosePal

Latest Threads

Top