When my DayPilot reference points to DayPilot Lite (version 5.0.302), and I run the project, I see DayPilot Scheduler rendered on the page.
When I change the reference to the Trial version of DayPilot (version 7.9.3373.1), and run the project, the page is blank, and the source only has <div id="DayPilotScheduler1">, nothing else related to DayPilot.
Here is my simple ASPX page that I'm using in both cases:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="SchedulerTest.Default" %>
<%@ Register Assembly="DayPilot" Namespace="DayPilot.Web.Ui" TagPrefix="DayPilot" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<DayPilot:DayPilotScheduler ID="DayPilotScheduler1" runat="server"></DayPilot:DayPilotScheduler>
</div>
</form>
</body>
</html>
Can someone please tell me what I am doing wrong, why doesn't the Trial version render the scheduler to the page?
Thank you