摘要:
网站广告比较常用的js滚动,下面这段代码来源于百度贴吧,自己改一改... 主要方法如下: //JS : 连续滚动 //参数: obj:物件ID[, isVertical:是否垂直方向[, offset:偏移量[, speed:上升速度[, delay:推迟时间]]]] function startMarquee(obj, isVertical, offset, speed, delay) { ... 阅读全文
摘要:
用于工厂模式生成对象的实例 接口: interface Ietest { void test(); void test2(); } 继承一: public class etest : Ietest { public void test() { Console.Wri... 阅读全文
摘要:
前几天因为要做点加密解密的东西来保存配置信息,找了很久终于找到一个比较常用的类,贴出来.共享... 里面已经有两种加密解密的算法:DES, Rijndael 加需要的,去查一下msdn,自己加啦.. public class SymmCrypto { public enum SymmProvEnum : int { DE... 阅读全文
摘要:
有点用.... static string Ser(Type type, object obj, string fileName) { try { XmlSerializer ser = new XmlSerializer(type); MemorySt... 阅读全文
摘要:
http://www.cnblogs.com/Files/yans/dbhelper.rar <<--程序 http://www.cnblogs.com/Files/yans/dbhelpersource.rar <<--源代码 小说明: 1.本软件用vs2008 开发,所以需要装.net framework 3.5. 2.程序用插件模式实现, 下载包里面只是放了SQL... 阅读全文
摘要:
the code under this line is one of my grduation design: please remember to use a jquery.js 1 57 html code: 学号 ... 阅读全文
摘要:
生成静态页时.一般会用到标签替换,下面这个类是最近写来做个方便的替换使用..给过路的朋友分享一下,有用,maybe public class FormatList { public bool IsTestMode { get; set; } NameValueCollection nvc = null; public FormatList() { ... 阅读全文
摘要:
在网上找到的一份.net中EXCEL的生成.... 当作是映琳的新开始吧... 1Excel.Application _excelApp = new Excel.Application(); 2Excel.Workbook _excelWorkbook = _excelApp.Workbooks.Add(Missing.Value); 3Excel.Worksheet _excelSh... 阅读全文