Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はExt.Net 1.2で作業しています
カレンダー コントロールを使用しています。今日の日付から有効にできる以前の日付のみのカレンダーをすべて無効にしたい。
日付ピッカーのように、MaxDate="<%# DateTime.Now %>"のような機能がありました。
.DataBind()Controlを呼び出すか、単に set する必要があるかもしれませんAutoDataBind="true"。
.DataBind()
AutoDataBind="true"
例
<ext:DatePicker runat="server" MaxDate="<%# DateTime.Now %>" AutoDataBind="true" />
お役に立てれば。