CalendarExtender日历控件

来源:互联网 发布:windows不能安装在usb 编辑:程序博客网 时间:2024/05/22 07:44

使用的注意点:
  1、不要将READONLY设置为TRUE,否则在刷新页面时不能提到你选取的时间;
  2、此控件不能显示时分秒,否则在刷新时会显示00:00:00。

    <div>
        <asp:ToolkitScriptManager ID="ToolkitScriptManager1" EnableScriptGlobalization="true"
            EnableScriptLocalization="true" runat="server">
        </asp:ToolkitScriptManager>
        <asp:TextBox ID="txtTime" runat="server"></asp:TextBox>
        <asp:CalendarExtender ID="CalendarExtender1" runat="server" Format="yyyy-MM-dd" TargetControlID="txtTime">
            <%--PopupButtonID="img"--%>
        </asp:CalendarExtender>
        <asp:ImageButton ID="img" ImageUrl="~/sample/11.jpg" runat="server" />
    </div>