当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > AjaxControlToolKit CalendarExtender(日历扩展控件)的使用方法

ASP.NET
many-to-many多对多映射
.NETRemotingChannelListener
转载李建忠老师的一篇文章
原创ColorComboBox控件
用IDisposable接口释放.NET资源
c#v2.0 扩展特性 翻译1
XPath中如何比较不同类型的对象
用哈希表搜索对象
C#陷阱int i = 10; i += i++; i =
Make a window that pops up from taskbar
获取网站返回的头部信息
自己动手写屏保
在DataGrid中添加Radio单选按钮列
实现性能目标的几种方法
增强.NETFramework中线程的功能
ASP.NET 2.0,写无限级下拉菜单不再难
book_dotnet
用.NET武装你的头脑
准备你的发布阶段
移植到.NET

ASP.NET 中的 AjaxControlToolKit CalendarExtender(日历扩展控件)的使用方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 307 ::
收藏到网摘: n/a

使用方法很简单,就不啰嗦那么多了 翻译过来就是 日历扩展控件吧 配合TextBox控件使用只要TextBox获的焦点就会显示出来日历 例子:只需要设置CalendarExtender的TargetControlID为需要显示日期的TextBox的ID即可以,textBox控件的readOnly属性设置为 false
主要代码:
复制代码 代码如下:

<asp:ScriptManager ID="ScriptManager1" runat="server" EnableScriptGlobalization="True" EnableScriptLocalization="True">
</asp:ScriptManager>
<ajaxToolkit:CalendarExtender Format="yyyy-MM-dd" ID="CalendarExtender2"
runat="server" TargetControlID="TextBox1" >
</ajaxToolkit:CalendarExtender>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

CalendarExtender的 Format属性设置 时间的显示格式
另:PopupButtonID属性是设置一个button控件的ID 点击该控件则展开calendarExtender
如下:
复制代码 代码如下:

<asp:ScriptManager ID="ScriptManager1" runat="server" EnableScriptGlobalization="True" EnableScriptLocalization="True">
</asp:ScriptManager>
<cc1:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="TextBox1" PopupButtonID="ImageButton1" >
</cc1:CalendarExtender>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:ImageButton ID="ImageButton1"
runat="server" />

ScriptManager的EnableScriptGlobalization属性 和EnableScriptLocalization属性设置为 true则 控件为中文
具体ScriptManager的属性方法还在学习中。