Calendar Control Question

  • Thread starter Thread starter Smonczka
  • Start date Start date
S

Smonczka

I have an ASP page with a Calendar Control in it. Users select a date
from the Calendar. When they do a form opens up where they can enter
or view data for that date. The problem is there dosn't seem to be a
way to have the calendar default to todays date. Users have to select
the date they want to go to. I need to have the control default to
todays date otherwize users end up selecting the wrong date.

Thanks for the help,
Steve
 
I have an ASP page with a Calendar Control in it. Users select a date
from the Calendar. When they do a form opens up where they can enter
or view data for that date. The problem is there dosn't seem to be a
way to have the calendar default to todays date. Users have to select
the date they want to go to. I need to have the control default to
todays date otherwize users end up selecting the wrong date.

Thanks for the help,
Steve

Hi,
Me.Calendar1.SelectedDate = Date.Now
 
Back
Top