1 [WebMethod(Description = "Get All User's Information")]
2 public XmlDocument UserInfo()
3 {
4 DataSet ds = new DataSet();
5 ds = MyConn.GetDataSet("GetAllUser","UserInfo");
6 XmlDocument doc = new XmlDocument();
7 doc = new XmlDataDocument(ds);
8 return doc;
9 }

相关文章:

  • 2021-04-14
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-29
  • 2022-01-07
  • 2022-12-23
  • 2021-08-11
  • 2021-07-02
  • 2021-09-10
相关资源
相似解决方案