views:

308

answers:

0

I am using the Outlook view control to make a shared public outlook calendar available in HTML. The issue is I need buttons so the user can control the calendar view (day, week, month). Since Microsoft eliminated the "view" param, and I am pointing to a shared calendar and not the ginaric user's calendar, I'm a little stuck. Here is my base code so far:

<html>
<head>
</head>
<body>
<OBJECT classid="CLSID:0006F063-0000-0000-C000-000000000046"
id="ViewCtlFolder"
width="100%"
height="430"
codebase="http://activex.microsoft.com/activex/controls/office/outlctlx.CAB#ver=9,0,0,3203"&gt;
<param name="Namespace" value="MAPI">
<param name="Folder" value="\\Public Folders\All Public Folders\Corporate Licensing">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>
</body>