2008年1月11日
摘要: 该方法可以使程序不通过web引用的方式去调用webservices方法,直接在代码里调用该方法就能达到动态调用webservices的目的。使用前先引用System.Web.Services动态链接库,是.net自带的dll。 方法如下: using System; using System.Collections.Generic; using System.Text; using System... 阅读全文
posted @ 2008-01-11 10:01 感動常在 阅读(427) 评论(0) 推荐(0) 编辑
摘要: public class XmlControl:Object { protected string strXmlFile; protected XmlDocument objXmlDoc = new XmlDocument(); public XmlControl(string XmlFile, Boolean bOverWrite, strin... 阅读全文
posted @ 2008-01-11 10:00 感動常在 阅读(2038) 评论(0) 推荐(0) 编辑
摘要: 1 public class ConverMoney 2 { 3 public static string ConvertToUpper(double inputNum) 4 { 5 string strTemp = inputNum.ToString("f2"); 6 return ProcessLeft... 阅读全文
posted @ 2008-01-11 09:59 感動常在 阅读(253) 评论(0) 推荐(0) 编辑