2014-06-29 69 views
0

我使用ajax日曆擴展到拾取日期,但每當我點擊圖像按鈕彈出日曆時,它導致回發。我做如下:圖像按鈕導致回發,而不是日曆擴展彈出使用AJAX

<asp:TextBox ID="txtDate" runat="server" ToolTip="Last Date" CssClass="g2"</asp:TextBox> 
<asp:ImageButton ID="ImageButton1" runat="server" Height="26px" width="30px" ImageUrl="~/images/cal.jpg"></asp:ImageButton> 
<asp:CalendarExtender ID="txtDate_CalendarExtender" runat="server" 
Enabled="True" TargetControlID="txtDate" PopupButtonID ="ImageButton1"></asp:CalendarExtender> 

我很困惑,因爲我從來沒有遇到過這樣的scenerio之前。

回答

-1

爲什麼你不這樣使用它,爲什麼你使用按鈕的日曆擴展。

<asp:TextBox ID="txtStartDate" runat="server"></asp:TextBox> 

<asp:CalendarExtender ID="CalendarExtender1" TargetControlID="txtStartDate" runat="server"/> 
+0

有點擊文本框上的日曆彈出不友好的用戶我想 –

+0

爲什麼? ,FYI你可以使用jquery壓光機,這是更好的。 – LearningAsp

相關問題