I am looking for a date custom webcontrol that extends from
System.Web.UI.WebControls
The control will expose the following Properties to the page that
implements it
Date (datetime)
Month (int)
Day (int)
Year (int)
MinDate(datetime)
MaxDate(datetime)
The control will expose the following Methods
Datetime GetDate ()
Void SetDate(DateTime)
The UI of the control will have 3 dropdowns one for month, day, year
Requirements
The Date Control will accept an optional datetime variable to
initialize the control. If date is not supplied then the current day
is displayed. The Control will allow the selection of any date
between
the MinDate and MaxDate
The Control will render HTML drop down boxes for Month,Day,Year.
Peter Bromberg [C# MVP] - 20 Jul 2007 12:58 GMT
Brandon,
This is the C# language group. Your question is about ASP.NET. Post here:
http://msdn.microsoft.com/newsgroups/default.aspx?pg=1&guid=&sloc=en-us&dg=micro
soft.public.dotnet.framework.aspnet&fltr=

Signature
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
bogMetaFinder: http://www.blogmetafinder.com
> I am looking for a date custom webcontrol that extends from
> System.Web.UI.WebControls
[quoted text clipped - 21 lines]
> the MinDate and MaxDate
> The Control will render HTML drop down boxes for Month,Day,Year.