45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 电脑教程 > 阅读资讯:如何Web Service中使用dOOdad下?

如何Web Service中使用dOOdad下?

2016-08-24 15:42:39 来源:www.45fan.com 【

如何Web Service中使用dOOdad下?

上一篇文章讲述了怎样插入一条记录,这里补充一下查询、修改和删除一条记录。相对插入而言,查询、修改和删除容易得多,下面分别给出我的一种实现:

1.查询:

如何Web Service中使用dOOdad下?//WebService端代码:
如何Web Service中使用dOOdad下?[WebMethod]
如何Web Service中使用dOOdad下?
publicstringGetEmployee(intempID)
如何Web Service中使用dOOdad下?如何Web Service中使用dOOdad下?
{
如何Web Service中使用dOOdad下?Employeeemp
=newEmployee();
如何Web Service中使用dOOdad下?
if(emp.LoadByPrimaryKey(empID))
如何Web Service中使用dOOdad下?如何Web Service中使用dOOdad下?
{
如何Web Service中使用dOOdad下?
returnemp.ToXml();
如何Web Service中使用dOOdad下?}

如何Web Service中使用dOOdad下?else
如何Web Service中使用dOOdad下?如何Web Service中使用dOOdad下?{
如何Web Service中使用dOOdad下?
returnnull;
如何Web Service中使用dOOdad下?}

如何Web Service中使用dOOdad下?}

如何Web Service中使用dOOdad下?
如何Web Service中使用dOOdad下?
//客户端代码:
如何Web Service中使用dOOdad下?webServiceservice=newwebService();
如何Web Service中使用dOOdad下?Employeeemp
=service.GetEmployee(intempID);

本文地址:http://www.45fan.com/dnjc/67031.html
Tags: 学习 笔记 MyGeneration
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部