We have a request to add a custom aspx page that displays Outlook calendar information. I have the code for the aspx page, I'm just not sure how to get that page or the page results into a custom view.
The code for the page (index.aspx) is below and calls the index.aspx.vbs which gets the Exchange calendar information. I'm not much of a programmer, so does anyone know how I can go about getting this into a custom view?
Thanks for the help
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="index.aspx.vb" Inherits="index" %>
<!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 runat="server">
<title>App Team Calendar</title>
<link href="css/DEMO1.CSS" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblInfo" runat="server" Visible="false"></asp:Label>
<asp:Label ID="lblMain" runat="server" Text=""></asp:Label>
</div>
</form>
</body>
</html>