Calendar.ShowGridLines Property
.NET Framework (current version)
Gets or sets a value indicating whether the days on the Calendar control are separated with gridlines.
Assembly: System.Web (in System.Web.dll)
Use the ShowGridLines property to specify whether the days on the Calendar control are separated with gridlines.
The following code example demonstrates how to use the ShowGridLines property to display the gridlines between days in the Calendar control.
<%@ Page Language="C#" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Calendar Example</title> </head> <body> <form id="form1" runat="server"> <h3>Calendar Example</h3> <asp:Calendar id="calendar1" runat="server" ShowGridLines="True"/> </form> </body> </html>
<%@ Page Language="C#" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <script runat="server" > void Check_Change(Object sender, EventArgs e) { // Show or hide the gridlines in the Calendar control // depending on the state of the ShowGridLinesCheckBox CheckBox // control. if (ShowGridLinesCheckBox.Checked) { Calendar1.ShowGridLines = true; } else { Calendar1.ShowGridLines = false; } } </script> <head runat="server"> <title> Calendar ShowGridLines Example </title> </head> <body> <form id="form1" runat="server"> <h3> Calendar ShowGridLines Example </h3> Select whether to show or hide the gridlines. <br /><br /> <asp:Calendar id="Calendar1" ShowTitle="True" runat="server"/> <br /><br /> <asp:CheckBox id="ShowGridLinesCheckBox" Text="Show/Hide gridlines" AutoPostBack="True" Checked="False" OnCheckedChanged="Check_Change" runat="server"/> </form> </body> </html>
.NET Framework
Available since 1.1
Available since 1.1
Show: