lorena Posted May 4, 2005 Posted May 4, 2005 Is there a way to disallow users selecting a date that has already passed? I have an .aspx page that is used to request an item by a certain date and I want to be sure people don't select a date prior to today. Thanks for any help. Quote
Moderators Robby Posted May 5, 2005 Moderators Posted May 5, 2005 Place this in the DayRender event.... If e.Day.Date < Now.Date Then e.Day.IsSelectable = False End If Quote Visit...Bassic Software
lorena Posted May 5, 2005 Author Posted May 5, 2005 Place this in the DayRender event.... If e.Day.Date < Now.Date Then e.Day.IsSelectable = False End If Thanks very much!! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.