using System; using System.Collections.Generic; $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; $endif$using System.Web; using System.Web.Services; namespace $rootnamespace$ { /// /// $classname$ 的摘要说明 /// [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] $if$ ($targetframeworkversion$ >= 3.5) // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。 // [System.Web.Script.Services.ScriptService]$endif$ public class $classname$ : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return "Hello World"; } } }