文本框的日期时间选择器未在asp.net中显示

时间:2019-01-04 06:49:07

标签: c# asp.net

Calendar Extender不适用于使用c#的简单ASP应用程序

当我单击文本框时,我没有使用日历扩展名的文本框来选择日期。 我已经在母版页本身中使用了脚本管理器。

<tr> 
    <td>Time :</td> 
    <td> <asp:TextBox ID="TxtTime" runat="server" Width="250px" AutoPostBack="True"> </asp:TextBox> 
         <asp:ColorPickerExtender ID="TxtTime_ColorPickerExtender" runat="server" Enabled="True" TargetControlID="TxtTime"> </asp:ColorPickerExtender> </td> 
    <td></td> 
</tr>

必须在用户单击文本框日历时显示,并且当用户在日历中选择特定日期时,所选日期应显示在文本框中。

1 个答案:

答案 0 :(得分:0)

我知道,这个“答案”不会带回您的<asp:ColorPickerExtender />,但是为什么不使用TextMode的{​​{1}}属性呢?

尝试一下,看看浏览器如何为您工作:

<asp:TextBox />

有关更多信息,请查看以下文章:https://www.codeproject.com/Tips/776764/%2FTips%2F776764%2FIntroducing-Textmode-in-ASP-NET#Date