views:

1895

answers:

3

I'm looking for a way to create Outlook Task Request from ASP.NET. I'm using Exchange Server 2003 for email server. Basically, user of my ASP.NET application will do something that will create Outlook Task based on some logic. Is this natively supported in .NET or must I use third party component?

+1  A: 

Are you using Outlook with an Exchange Server? If so, you can use Exchange Web Services.

Exchange Web Services are an easy way of doing pretty much anything within an Exchange mailbox, so if you're going to be doing more than just Outlook Tasks, then it may be worth looking at. Otherwise, AFAIK, there are no native .Net classes (that ship with the framework).

I have also not seen any 3rd party components out there so far...

Jaymz87
I'm using Outlook with Exchange Server, I'll revise the question.
Salamander2007
+1  A: 

I've not done this personally, but after having a quick google around I found the following links which may point you in the right direction ...

Link #1 Link #2

Hope these help :-)

WestDiscGolf
Both solutions use Office Interop, which is something that I rather not doing.
Salamander2007
A: 

You can use WebDav for Exchange. Here is an example how to do this.

Sunny