我的表单中有一个名为date of date(TextMode = date)的字段。它适用于chrome和Firefox,为我提供了预期的下拉日历。但它无法与Internet Explorer一起使用所有版本。我可以做些什么来让它在IE中工作。我知道使用j查询等,但有没有办法在asp.net拖曳工作中使这个内置日期功能。
这是HTML
<td class="style12" valign="top">
<strong>
<asp:TextBox ID="txt_date" runat="server" Font-Bold="True" Font-Size="12pt"
Height="25px" style="margin-left: 0px" TextMode="Date" Width="150px"></asp:TextBox>
</strong>
</td>
答案 0 :(得分:2)
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
<asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtDate">
</asp:CalendarExtender>