I only want the user to be able to select a maximum of 30 days. How do I limit that using a WebMonthCalendar or WebDatePicker?
Hi Abby,Thank you for contacting Infragistics!We received your support request concerning allowing user to select maximum 30 days using WebMonthCalendar and WebDatePicker,for this you can create the minimum and maximum value of datetime object and assign to the WebMonthCalendar as: DateTime minDate = DateTime.Today; DateTime maxDate = DateTime.Today.AddDays(30); WebMonthCalendar1.MinDate = minDate; WebMonthCalendar1.MaxDate = maxDate;You can find more information here:https://es.infragistics.com/help/aspnet/webmonthcalendar-setting-min-and-max-dates-for-webmonthcalendarPlease let me know if you need more information.Sincerely,Divya JainAssociate Software DeveloperInfragistics, Inc.www.infragistics.com