温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人才招聘系统(NIIT学生作品)
当前文件:
NiitJob/App_Code/Hr.cs[608B,2009-6-12 11:50:17],打开代码结构图
NiitJob/App_Code/Hr.cs[608B,2009-6-12 11:50:17],打开代码结构图1using System; 2
using System.Web; 3
using System.Collections; 4
using System.Web.Services; 5
using System.Web.Services.Protocols; 6
7
8
/// <summary> 9
/// Summary description for Hr 10
/// </summary> 11
//[WebService(Namespace = "http://tempuri.org/")] 12
//[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 13
public partial class Hr : System.Web.Services.WebService { 14
15
public Hr () { 16
17
//Uncomment the following line if using designed components 18
//InitializeComponent(); 19
} 20
21
[WebMethod] 22
public string HelloWorld() { 23
return "Hello World"; 24
} 25
26
} 27
28









