Hi,
Can't I set the value of the WebDatePicker on the server side?
I am trying :
WebDatePicker1.Date = DateTime.Now.AddDays(3);
on the page load event with no luck.
Thanks,
Erkan
Hi Maya:
I am having a similar problem. I have the app in VB.net and when I use the following code to set the value, it sets to nothing.
Me.myWebDateChooser.Value = "03/05/2013"
Any help will be greatly appreciated.
Sharma
Hello Erkan,
I’m just following up to see if you’ve been able to resolve your issue. If you have any questions or concerns or if you need further assistance please let me know.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hello Erkan ,
Thank you for posting in our forum.
The WebDataPicker controls doesn’t have a Date property. To set its current value you can use the Value property. For example:
this.WebDatePicker1.Value = DateTime.Now.AddDays(2);
Let me know if you have any questions.