Deepak Bhatia
posted
85 posts
since
Sep 18, 2009
from
Udaipur
|
|
Re: calender control i want change year fastly
|
|
|
|
|
|
|
|
|
|
|
Use AJAX Calendar it may help you.
|
|
|
|
|
Please do not forget to mark answer as accepted if it helped you.
Deepak Bhatia
|
|
|
|
|
|
Madhu K
posted
238 posts
since
Sep 10, 2009
from
Hyderabad
|
|
Re: calender control i want change year fastly
|
|
|
|
|
|
|
|
|
|
|
Have a look at this link this may help you http://www.asp.net/ajax/ajaxcontroltoolkit/samples/calendar/calendar.aspx
|
|
|
|
|
|
Satyapriya Nayak
posted
2264 posts
since
Mar 24, 2010
from
|
|
Re: calender control i want change year fastly
|
|
|
|
|
|
|
|
|
|
|
Hi santhosh,
Here is a solution for you.so run the attachments
Thanks
Please do not forget to mark as Accepted answer if it helped you.
|
|
|
|
|
|
jitendra patel
posted
2 posts
since
Jul 21, 2010
from
|
|
Re: calender control i want change year fastly
|
|
|
|
|
|
|
|
|
|
|
hi,
please Refer this
-->
Protected void Button_click( )
{
label1.text=calender1.selecteddate.longdate.tostring();
}
protecd void Page_load( )
{
datetime dt=new datetime(1985,03,21);
calender1.visibledate=dt; (this for month and year)
calender1.selecteddate=dt; (this for only date)
}
|
|
|
|
|
|