摘要: 同样要说的是“停靠菜单”,用JQuery(JavaScript)都是容易实现的。来看看该控件的属性:TargetControlID - The control that the extender is targeting. When the mouse cursor is over this control, the hover menu popup will be displayed.PopupControlID - The ID of the control to display when mouse is over the target control. (当鼠标指针悬停在目标控件上方时 阅读全文
posted @ 2011-08-03 15:28 January 阅读(978) 评论(0) 推荐(0) 编辑
摘要: FilterTextBoxExtenderTargetControlID - 要执行文本过滤的TextBox ID FilterType - 过滤类型,Numbers,LowercaseLetters(小写),UpcaseLettes(大写)and Custom(default) FilterMode-ValidChars(default) and InvalidChars(低版本中不存在次属性),设置其中任意一个值时,FilterType必须为Custom,也就是说FilterType是同时可以设置两种类型(Custom和其中任意一中),具体可以参看例子ValidChars-有效字符,Fil 阅读全文
posted @ 2011-08-03 13:16 January 阅读(713) 评论(0) 推荐(0) 编辑
摘要: 该控件的效果就是可以使相应的Panel产生阴影和圆角框的效果,要说的是该控件在CSS3来临之际并不存在多大的意义了,因为在CSS3中同样可以实现而且更加理想的效果。但是要说明的是不要为目标Panel添加过多的CSS属性,不然会出现预料之外的效果,如果你想设置内容的内边距(padding),建议用在Panel里面嵌套div,在为期添加相应的CSS。 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_D 阅读全文
posted @ 2011-08-03 12:04 January 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 1.初始效果2.改变位置后TargetControlID - The ID of a Panel to make draggable.(本例为:PanelContainer)DragHandleID - The ID of a control that will serve as the "drag handle" for the panel. When the user clicks and drags this control, the panel will move.(本例为:PanelHeader,当单击“Header”,按住可拖动)示例代码: 1 <asp: 阅读全文
posted @ 2011-08-03 10:04 January 阅读(414) 评论(0) 推荐(0) 编辑