摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#region 菜单项集合编辑类 public class ContextMenuItemCollectionEditor : CollectionEditor { public...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->private string ReadResourceString(string resourceName) { Assembly dll = Assembly.Get...
阅读全文
摘要:表格 1. ASP.NET 页面生存周期中的关键事件 阶段 页面事件 可重写方法 页面初始化 Init ...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->function getPageSize(){ var xScroll, yScroll; if (window.innerHeight && window.scrollMax...
阅读全文
摘要:javascript技巧参考 原文:http://www.cnblogs.com/xh831213/archive/2006/03/17/352224.html 事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement....
阅读全文
摘要:模板控件概念: 模板控件可以使内容与外观分离。典型的应用有Repeater、DataList。 ASP.NET 提供了一种称为模板的通用功能,允许将控制数据与其表示分开。模板化控件本身不提供用户界面 (UI)。该控件的 UI 由页面开发人员通过内联模板提供,该模板允许页面开发人员自定义该控件的 UI。 开发模板化控件的方法: 实现 System.Web.UI.INamingCont...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/**//* json.js 2006-04-28 This file adds these methods to JavaScript: object.toJSONStr...
阅读全文
摘要:在自定义Server Control中捆绑JS文件 Step by Step 注:本文基于.NET 2.0 和 VS2005 我们在编写 Server Control 的时候难免要用到一些客户端脚本(javascript),如何把脚本和编译好的dll一起发布就成了一个问题。把一段一段的javascript block写在cs文件里是一件很“丑陋”的事情,javascript就应呆在*.js文件里...
阅读全文
摘要:在table或div里显示文章的时候,如果是汉字,文章会根据table和div的width属性自动分行,但如果是英文,当单词长度超过table或div宽度的时候,table/div便会被撑开,有时候会造成页面很难看,这时可以给table/div设置如下样式:word-break:break-all;word-wrap:break-word; 单词超长的时候能够自动截断单词分行,避免上述情况的发生。...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->var EditableBox = Class.create();EditableBox.prototype = { initialize:function(id){ this.src = d...
阅读全文
摘要:格式限定符中的转义 格式限定符中往往有一些字母代表特点的意思比如,在DateTime.ToString中,y代码年,M代表月,等等那么如果ToString的结果我本身就需要这些字符又怎么办呢?此时就需要使用转义字符,而且这个转义标记就是我们熟悉的"\" DateTime now = DateTime.Now;now.ToString("yyyy,MM,dd HH:mm:ffff");//2006...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> function refreshit() { var handler={ onCreate...
阅读全文
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.IO ;using System.Xml ;using System.Collections ;using System.Reflection ;usi...
阅读全文