我正在使用Microsoft Visual Studio 2010版本10.0.30319.1 RTMRel Microsoft .NET Framework版本4.0.30319 RTMRel
我下载了AjaxControlToolkit.Binary.NET40。添加它们作为参考。
当我添加文本框时,使用Calendar Extender扩展,其中包含如下最终代码:
当我按下F5时,当我点击textbox1时,我看不到任何事情。请帮忙......这很简单,但对我来说仍然无效.. :(
我用谷歌搜索了一段时间,但没有一个解决方案确实有帮助..请帮忙!我添加了装配& ScriptManager但仍无法正常工作
<asp:TextBox ID="TextBox1" runat="server" ></asp:TextBox>
<asp:CalendarExtender ID="TextBox1_CalendarExtender" runat="server"
Enabled="True" TargetControlID="TextBox1" Format="MMMM d, yyyy" >
</asp:CalendarExtender>
答案 0 :(得分:0)
您需要添加对PopupButtonID和ImageButton的引用。所以:
<asp:CalendarExtender ID="TextBox1_CalendarExtender" runat="server"
Enabled="True" TargetControlID="TextBox1" Format="MMMM d, yyyy" PopupButtonID="ImageButton1" >
</asp:CalendarExtender>
<asp:ImageButton runat="server" ID="ImageButton1" ImageUrl="~/images/somegif.gif" />
然后单击ImageButton以启动CalendarExtender
答案 1 :(得分:0)
确保您的ScriptManager正好位于表单标记
之后<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
尝试使用ToolkitScriptManager而不是ScriptManager
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></asp:ToolkitScriptManager>