send data to another computer.
i have the ploblem, i want to send data in xml format such member.xml but i don't know how to send this data to another computer. Another computer has ip 10.98.11.56 ,i use c#
//********** this is my code ************//
SqlDataAdapter thisadapter = new SqlDataAdapter("select member_id,title,firstnamethai,lastnamethai,bank_na me,bank_branch,point from TB_Member",BB.GetSQLConnection());
SqlCommandBuilder thisbuilder = new SqlCommandBuilder(thisadapter);
DataSet ds = new DataSet();
thisadapter.Fill(ds,"TB_Member");
ds.WriteXml("Member");
ds.WriteXmlSchema("Member_1");
|