一些實用工具
摘要:1.網頁調試工具Fiddler2Setup 2.動軟.net代碼生成器 3.反編譯Reflector.exe (插件)
阅读全文
posted @
2008-02-02 10:57
感動常在
阅读(399)
推荐(0) 编辑
通过反射动态调用webservices
摘要:该方法可以使程序不通过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
感動常在
阅读(434)
推荐(0) 编辑
XML操作类
摘要: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
感動常在
阅读(2044)
推荐(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
感動常在
阅读(256)
推荐(0) 编辑
項目中用到的DBManager類,用來操作數據庫(用到了泛型)
摘要:/// /// 数据库对象管理者(泛型) /// /// 要操作的类型 /// 键属性的类型 public class DBManager { ...... } 點擊下載
阅读全文
posted @
2008-01-07 09:43
感動常在
阅读(378)
推荐(0) 编辑
SqlHelper.cs
摘要:虽然在.Net类库中,有专门的类操作SqlServer操作库,但在Web开发中使用起来还不是很方便,为此,微软的人写了一个数据访问应用程序块 Data Access Application Block。它可在源码中找到,亦可点此下载SqlHelper.cs (148.24 kb,for .Net2)。如果使用SqlServer数据库进行快速Web开发,用它是个明智的选择。
阅读全文
posted @
2007-10-18 15:55
感動常在
阅读(726)
推荐(0) 编辑