You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
526 B

<%@ Page Language="VB" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Calendar2" Assembly="obout_Calendar2_NET" %>
<script runat="server">
Dim calStart As OboutInc.Calendar2.Calendar
Dim calEnd As OboutInc.Calendar2.Calendar
Sub Page_Init(o As object, e As EventArgs)
calStart = New OboutInc.Calendar2.Calendar()
calEnd = New OboutInc.Calendar2.Calendar()
calStart.ID = "startRange"
calEnd.ID = "endRange"
startRangePlaceholder.Controls.Add(calStart)
endRangePlaceholder.Controls.Add(calEnd)
End Sub