温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net在线考试系统源码及毕业设计论文
当前文件:
ExamOnline/Students/WSRePwd.asmx[652B,2009-6-12 11:42:06],打开代码结构图
ExamOnline/Students/WSRePwd.asmx[652B,2009-6-12 11:42:06],打开代码结构图1<%@ WebService Language="C#" Class="ExamOnline.WSRePwd" %> 2
3
using System; 4
using System.Web; 5
using System.Web.Services; 6
using System.Web.Services.Protocols; 7
using System.Web.Script.Services; 8
9
namespace ExamOnline 10
{ 11
[WebService(Namespace = "http://tempuri.org/")] 12
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 13
[ScriptService] 14
public class WSRePwd : System.Web.Services.WebService 15
{ 16
[WebMethod] 17
public bool repwd(string userid, string oldpwd, string newpwd) 18
{ 19
return (new ExamOnline.Login()).checkPWD(ref userid, ref oldpwd, ref newpwd); 20
} 21
} 22
} 23
24





[WebService(Namespace 
}
}