上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 以上的代码可以捕获到选中的网页中的纯文本内容(不含HTML标签)如果想获得包含html的内容,将document.selection.createRange().text改成document.selection.createRange().htmlText 阅读全文
posted @ 2007-05-13 11:39 永不言败 阅读(3283) 评论(2) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/msdnmag/issues/07/03/WickedCode/Default.aspx?loc=zh#void您想了解秘密吗?讳莫如深,不可言传的秘密?一旦揭示,将在 ASP.NET 社区引起巨大的反响,并使 Microsoft 的反对者发出“啊哈!”的惊叹,对吗? 多数使用 ASP.NET 构建的网站没有良好的可扩展性。它们受到自我强加的“玻... 阅读全文
posted @ 2007-05-12 11:22 永不言败 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 在C#中可以通过Assembly来动态加载DLL,然后由它创建类型,接着通过类型的InvokeMember方法来调用DLL中类的方法以及属性。 为了方便说明一下的方法,先说明一下DLL的代码,大致如下: using System; namespace clsTestDll { /// /// Summary description for TestDll. /// ... 阅读全文
posted @ 2007-04-24 17:15 永不言败 阅读(864) 评论(1) 推荐(0) 编辑
摘要: http://www.codeproject.com/cs/internet/Searcharoo_4.asp Background This article follows on from the previous three Searcharoo samples: Searcharoo Version 1 describes building a simple search engine th... 阅读全文
posted @ 2007-04-21 19:07 永不言败 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: IE6.0,ie7.0与Firefox的CSS兼容性问题1.DOCTYPE 影响 CSS 处理 2.FF: div 设置 margin-left, margin-right 为 auto 时已经居中, IE 不行 3.FF: body 设置 text-align 时, div 需要设置 margin: auto(主要是 margin-left,margin-right) 方可居中 4.FF:... 阅读全文
posted @ 2007-03-27 17:45 永不言败 阅读(2725) 评论(0) 推荐(0) 编辑
摘要: jQuery.fn.extend({ check:function(mode) { var mode = mode || 'on'; return this.each(function(){ switch(mode){ case 'on': this.checked=true... 阅读全文
posted @ 2007-03-21 17:00 永不言败 阅读(1742) 评论(2) 推荐(0) 编辑
摘要: Source:http://www.codeproject.com/aspnet/DragAndDropShopping.aspDownload demo project - 629.2 KB Introduction: Sometime back I visited a website that had the drag and drop shopping cart feature. Use... 阅读全文
posted @ 2007-03-19 12:51 永不言败 阅读(711) 评论(1) 推荐(0) 编辑
摘要: 1.UpdateParameters,InsertParameters参数的顺序一定要跟方法的参数顺序一样才可以,否则会抛出异常,说没有这个异常方法.如:ObjectDataSource的UpdateMethod的方法为Update(string a,string b,int c),那么你UpdateParameters的参数应该这样写 2.在用ObjectDataSource的时候,... 阅读全文
posted @ 2007-03-18 13:34 永不言败 阅读(476) 评论(2) 推荐(0) 编辑
摘要: xml文件 The Autobiography of Benjamin Franklin Benjamin Franklin 8.99 2222 Benjamin Franklin 8.99 The Confidence Man Herman Me... 阅读全文
posted @ 2007-03-16 18:58 永不言败 阅读(326) 评论(0) 推荐(0) 编辑
摘要: Dare Obasanjo Microsoft Corporation 2002 年 5 月 20 日 本文是有望长期发表的系列文章的第一篇,这些文章专门阐释由 Microsoft 支持的 W3C XML 技术的更微妙的内容。尽管 XML 的核心仍相当简单,但是围绕它的技术已经变得日益复杂,而且其中的一些技术需要相当多的专业知识才能掌握。本文以及随后的其他文章旨在将各种 W3C XML 建议中的信... 阅读全文
posted @ 2007-03-16 17:38 永不言败 阅读(2319) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页