<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="AjaxWebPartPage1.aspx.cs" Inherits="AjaxWebPartPage1" %>
<%@ Register Src="MyControl.ascx" TagName="MyControl" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:WebPartManager ID="WebPartManager1" runat="server">
            </asp:WebPartManager>
        </div>
        <table>
            <tr>
                <td valign="top">
                    <asp:WebPartZone ID="LeftZone" runat="server">
                        <ZoneTemplate>
                            <asp:Calendar ID="Calendar1" runat="server"> </asp:Calendar>
                        </ZoneTemplate>
                    </asp:WebPartZone>
                </td>
                <td valign="top">
                    <asp:WebPartZone ID="RightZone" runat="server">
                        <ZoneTemplate>
                            <uc1:MyControl ID="MyControl1" runat="server" />
                        </ZoneTemplate>
                    </asp:WebPartZone>
                </td>
            </tr>
        </table>
    </form>
</body>
</html>
