我有一个div而且里面有一个TextBox设置显示:none,连接到它的CalendarExtender和一个显示日历的TextBox旁边的Button。单击按钮时,日历将显示在表单的左上角。有没有办法让它出现在文本框所在的按钮旁边?
答案 0 :(得分:3)
我用position:absolute; visibility: hidden;
代替display:none;
修复了它。
<asp:TextBox ID="t1" runat="server" Style="position:absolute; visibility: hidden" />
<asp:Button ID="b1" runat="server" Text="Button" />
<asp:CalendarExtender ID="c1" runat="server" TargetControlID="t1"
PopupButtonID="b1"/>