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
468 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Calendar2" Assembly="obout_Calendar2_NET" %>
<script runat="server">
protected OboutInc.Calendar2.Calendar myCal;
void Page_Init(object o, EventArgs e) {
myCal = new OboutInc.Calendar2.Calendar();
myCal.ID = "calendar";
myCalPlaceholder.Controls.Add(myCal);
}
void Page_Load(object o, EventArgs e) {
if(!Page.IsPostBack) {
myCal.DateFirstMonth = new DateTime(2007, 6, 1);