摘要: 学习就要从最简单最直观的地方入手。1)打开记事本,添加如下代码:using System.Web.Services;public class myFirstWebService : WebService{ [WebMethod] public string HelloWorld() { return "Hello World!"; } [WebMethod] public string Hello(string name) { return "welcome " + name + ",current time is " + ... 阅读全文
posted @ 2014-04-08 23:06 fo0ol 阅读(1190) 评论(0) 推荐(0) 编辑