Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

Retrieving a range of dates from a selection (VB)

<%@ Page Language="VB" %> <script runat="server">     Protected Sub Calendar1_SelectionChanged(ByVal sender As Object, _       ByVal e As System.EventArgs)         Label1.Text = "<b><u>You selected the following date/dates:</u></b><br>"                  For i As Integer = 0 To (Calendar1.SelectedDates.Count - 1)             Label1.Text += Calendar1.SelectedDates.Item(i).ToShortDateString() & _               "<br>"         Next     End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Using the Calendar Control</title> </head> <body>     <form id="form1" runat="server">     <div>         <asp:Calendar ID="Calendar1" Runat="server"           OnSelectionChanged="Calendar1_SelectionChanged"           SelectionMode="DayWeekMonth">         </asp:Calendar>         <asp:Label ID="Label1" Runat="server"></asp:Label>     </div>     </form> </body> </html>