Mega Code Archive

 
Categories / ASP.Net / Asp Control
 

Allowing the Selection of Multiple Dates in a Calendar Control (VB net)

<%@ Page Language=VB Debug=true %> <HTML> <HEAD> <TITLE>Allowing the Selection of Multiple Dates in a Calendar Control</TITLE> </HEAD> <BODY LEFTMARGIN="40"> <form runat="server"> Select a Date <BR><BR> <asp:calendar      id="Mycal"      runat="server"     cellpadding="3"     cellspacing="3"     selectionmode="DayWeekMonth"     selectorstyle-font-bold="True"     selectorStyle-backcolor="#3366ff"     font-name="Tahoma"     font-size="12"     backcolor="ivory"     selecteddaystyle-backcolor="#ffcc66"     selecteddaystyle-font-bold="True" /> </form> </BODY> </HTML>