AjaxControlToolKit 日历不出现
我试图让 AjaxControlToolkit Calendar 对象填充到 firefox (latest build) 内的 aspx 页面上。我的环境由 .net 3.5、vs 2010 和 vista 最新 sp 组成。
这是我正在执行的代码:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolKit:CalendarExtender ID="TextBox1_CalendarExtender" runat="server"
Enabled="True" TargetControlID="TextBox1">
</ajaxToolKit:CalendarExtender>
编辑
通过填充我的意思是显示数据。目前它甚至没有出现,我正在探索目前可以使用的其他软件包,因为我有日程安排。我会考虑发布更多代码。
I am trying to get the AjaxControlToolkit Calendar object to populate on an aspx page within firefox (latest build) . My environment consists of .net 3.5, vs 2010, and vista latest sp.
Here is the code I am executing:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolKit:CalendarExtender ID="TextBox1_CalendarExtender" runat="server"
Enabled="True" TargetControlID="TextBox1">
</ajaxToolKit:CalendarExtender>
EDIT
By populate I mean display with data. At the moment it doesn't even show up, I am exploring other packages to use at the moment because I am on a schedule. I will look into posting more code up.
Additional code:
http://pastebin.com/m59d8392e
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不久前我遇到了与此有点类似的问题,并提出了以下问题。答案是确保文档顶部存在文档类型定义。尝试一下,看看是否可以解决您的问题。
CalendarExtender 定位问题
I had an issue somewhat similar to this a while back and asked the below question. The answer was to ensure that a doctype definition existed at the top of the document. Try it out and see if it fixes your issue.
CalendarExtender Positioning Problem