I'm wanting to embed a user's outlook calender using the Outlook View Control; however, I'm having problems just displaying the calendar for that current day (not the whole week/month).
Here's my current code
<object classid="CLSID:0006F063-0000-0000-C000-000000000046" id="ViewCtlFolder">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Calendar">
<param name="ViewXml" value="">
<param name="DeferUpdate" value="0">
</object>
Whenever I try to add the parameter
<param name="View" value="Today">
it defaults back to the user's inbox as indicated here:
http://www.outlookcode.com/article.aspx?id=70
Does anyone know how to accomplish this?