テキスト ボックスに ajax ツールキット カレンダー エクステンダーが接続されており、日付がテキスト ボックスに入力された後に OnTextChanged を起動しようとしています。
問題は、ユーザーが手動でデータを入力したくないので、テキストボックスを無効にしましたが、無効になっているテキストボックスに対してイベントが発生しません。
とにかくその周りにありますか?ラベルに変更しようと思ったのですが、OnTextChanged イベントがありません。
ありがとう
<asp:TableCell CssClass="cssWidth" Width="150px">
<asp:CalendarExtender ID="CalendarExtender1" PopupButtonID="Image1" runat="server" TargetControlID="TextBoxAddDate" Format="dd/MM/yyyy"></asp:CalendarExtender>
<asp:TextBox ID="TextBoxAddDate" ReadOnly="true" CssClass="cssWidth" ToolTip="תאריך הוספה" runat="server" Style="font-size: large;background-color:aliceblue;" AutoPostBack="true" AutoCompleteType="Search" MaxLength="0" TextMode="SingleLine" OnTextChanged="txtSearch_TextChanged" ViewStateMode="Enabled" autocomplete="off" >
</asp:TextBox> 
<asp:ImageButton runat="Server" ID="Image1"
ImageUrl="~/Calendar_scheduleHS.png" AlternateText="Click to show calendar" /><br />
</asp:TableCell>