views:

1013

answers:

2

Hai TEchies

Can anyone tell me how can i set an appointment /reminder in the outlook express , from my ASP.NET web page. I am using ASP.NET 2.0

Thanks in advance

A: 

Something like this using the iCal standard will probably work. It will also work with Google Calendar.

AaronLS
A: 

I think what you're looking for is an .ics attachment for email. This requires you to create specifically crafted text file with an .ics extension and attach that to your email.

A quick google for "asp.net ics" brings up: http://www.codeproject.com/KB/applications/SendAppointment.aspx which seems suitable to your needs.WikiPedia also has a link on this.

Stackoverflow also has this tag that has more information: http://stackoverflow.com/questions/tagged/icalendar

itchi