<%@ webservice language=”vb” class=”convertmoney” %> imports system.web.services <webservice()>public class convertmoney inherits webservice ‘ code will go here end class 现在就可以给你的类添加功能了。在这里,你创建了一个简单函数接受英镑的货币量然后返回美元值。通常,你还应该在数据库内找到两种货币之间的交换汇率。在上面的例子里,你在代码中直接把汇率设定为1英镑可兑换1.44美元。在以上代码块中增加代码之后全部web服务代码如下所示。 <%@ webservice language=”vb” class=”convertmoney” %> imports system.web.services <webservice()>public class convertmoney inherits webservice <webmethod()>public function _ poundstodollars(britishpounds as double) as double return britishpounds * 1.44 end function end class