2

I need to display the Current Date (17/Jun/2013) Automatically in the ASPxDateEdit Control by default while loading.

How to implement this?Any default property is there?

4

2 回答 2

2

我建议你看看这里。该Date物业将解决您的问题。

于 2013-06-17T10:09:53.053 回答
2

请按照此示例并根据您的要求进行修改:

<dx:ASPxDateEdit runat="server" ID="uniquedateid"  Width="95px"><ClientSideEvents Init="function(s,e){ s.SetDate(new Date());}" /> </dx:ASPxDateEdit>     
于 2013-06-17T19:27:53.790 回答