摘要: 因为项目的要求,要做一个WEB service,通过传入用户名和新的密码,更新Windows帐号的密码,代码入下:[WebMethod] public bool ChangePassword(string userName,string password,string validCode) { string msg = ""; if (validCode != getOriginValidCode()) { msg = "无效的BI确认码!"; throw new Exception(msg); ... 阅读全文
posted @ 2011-10-01 19:08 db's jim 阅读(248) 评论(0) 推荐(0) 编辑