Skip to main content
A newer version of this page is available. .
Tab

CalendarProperties.MaxDate Property

Gets or sets the maximum date allowed to be entered into the editor by an end-user.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(typeof(DateTime), "")]
public virtual DateTime MaxDate { get; set; }

Property Value

Type Default Description
DateTime String.Empty

A DateTime object that specifies the editor’s maximum allowed date.

Remarks

Use the CalendarProperties.MinDate and MaxDate properties to limit user input to dates falling within a specific range. The MaxDate property specifies the upper limit of the allowed date range.

Dates which are out of the specified range cannot be entered into the calendar by end-users. These dates are displayed using a specific style (ASPxCalendar.DayOutOfRangeStyle) and don’t respond to user clicks.

Note that programmatic manipulation on the calendar editor’s value isn’t limited by the CalendarProperties.MinDate and MaxDate property values.

Note

The MaxDate property synchronizes its value with the calendar’s ASPxCalendar.MaxDate property.

Example

This example demonstrates how end-user input can be limited by defining a specific date range within the ASPxCalendar control.

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register assembly="DevExpress.Web.v8.3, Version=8.3.2.0, Culture=neutral, 
PublicKeyToken=b88d1754d700e49a" namespace="DevExpress.Web.ASPxEditors" tagprefix="dxe" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
</script>

 <html xmlns="http://www.w3.org/1999/xhtml" >
 <head id="Head1" runat="server">
     <title>Max and Min Dates of ASPxCalendar</title>
 </head>
 <body>
     <form id="form1" runat="server">
     <div>
         <br/>
         <dxe:ASPxCalendar ID="ASPxCalendar1" runat="server" MaxDate="2007-08-24" 
         MinDate="2007-08-08" SelectedDate="2007-08-16">
         </dxe:ASPxCalendar>    
     </div>
     </form>
 </body>
 </html>
See Also