摘要: 一、URL编码 /// <summary> /// URL编码 (=、?、& 不参于编码) /// </summary> /// <param name="str"></param> /// <returns></returns> public static string HtmlUrlEncode(string str) { string result = string.Empty; result = System.Web.HttpUtility.Ur... 阅读全文
posted @ 2013-05-30 21:33 lhfly 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 一、基本操作在.Net命令提示符下:>wsdl "WebSerivces路径" /o:"输出文件路径" /n:"命名空间"注:WebSerivces路径: http://xxxxx/xx.asmx 不能为空 /o:"输出文件路径": 指定要生成的目录,可为空。不指定则为默认目录 例:将代理类cs文件放在D:\盘 /o: d:\ /n:"命名空间": 项目命名空间,可为空 更多参数设置可参照下面帮助文档二、WSDL命令帮助wsdl.exe - 使用 ASP.NET,根据 WSDL 协定文件、 阅读全文
posted @ 2013-05-30 21:23 lhfly 阅读(4398) 评论(1) 推荐(1) 编辑