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
我正在使用日历控件。我想禁用所有以前的日期,只有日历可以从今天的日期启用。
像 Date Picker 这样的功能有MaxDate="<%# DateTime.Now %>"。
也许您只需要调用.DataBind()控件,或者只需设置AutoDataBind="true".
.DataBind()
AutoDataBind="true"
例子
<ext:DatePicker runat="server" MaxDate="<%# DateTime.Now %>" AutoDataBind="true" />
希望这可以帮助。