Outlook calendar associates with asp calendar?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a calendar was built in ASP.
What we are looking for is: when we update the event in outlook calendar
(2003), we would like it update in the asp calendar that we built as well.
How do it do it? How can we make it works both in outlook and asp calendar?
Have anyone done any such thing like this before. Thank you.
 
How? It's impossible to say without knowing where the .asp page gets its
calendar data or whether you're designing this for internal use in an
Exchange environment.
 
Is it possible to get data from outlook calendar? If it’s possible…please
tell me how?
 
In an Exchange environment, you can use WebDAV to query the server.
Otherwise, you'd need to write client-side JScript code using the Outlook
object model to interact with the data stored on the Outlook client.
Depending on the application and environment (about which you've still given
no clues), you may run into security issues.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Thanks Sue for the info.
"> In an Exchange environment, you can use WebDAV to query the server. "
sounds good. Please help to understand how can we use WebDAV to query the
server?
I don't know c-side JScript.
 
WebDAV is covered in the Exchange SDK --
http://msdn.microsoft.com/exchange/

See http://www.outlookcode.com/d/code/formonweb.htm for JScript examples
that shows how to instantiate an Outlook.Application object. Beyond that,
you'd use the same Outlook objects and methods that you would for any
Outlook client application.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top