calendar control problem

  • Thread starter Thread starter angus
  • Start date Start date
A

angus

Dear All,

I would like to make a calendar in asp.net. The notion is as follow.

There is a <asp:textbox/>, <asp:button/>, if a user click on the button, a
calendar control will appear just below the <asp:button/> (within the same
page, not in a new window). If a user select a day in the calendar, the
<asp:textbox/> will fill in the date. and the calendar control will be
disappeared.

that is, something like

http://www.aisto.com/roeder/dotnet/DatePicker.png

But the above is in window form. Can i do it in web-form?

Thank you.

Regards,
Angus
 
it's not fun but can be done yourself.
I might suggest a simple search on an ASP.NET Calendar Component. I know
I've used a few different ones in the past and some were free. May be worth
the 5 minutes searching to save you a couple hours writing.
 
Yes you can. Pop-up window is one choice (but you didn't want it) and
another is to put the calendar to be displayed with DHTML (that is bit
script and styles). It is just more client-side programming then.
 
Back
Top