Click here to Skip to main content
15,885,811 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralEditing MS word document in browser Pin
Rajusavadi17-Jan-08 18:58
Rajusavadi17-Jan-08 18:58 
GeneralRe: Editing MS word document in browser Pin
Sun Rays17-Jan-08 19:07
Sun Rays17-Jan-08 19:07 
QuestionAsp.net rdlc reports hanging in production (Ajax application) Pin
Stl .Net Dev17-Jan-08 18:18
Stl .Net Dev17-Jan-08 18:18 
GeneralRe: Asp.net rdlc reports hanging in production (Ajax application) Pin
Paddy Boyd17-Jan-08 22:23
Paddy Boyd17-Jan-08 22:23 
GeneralFind client server ipaddress & the connection name details Pin
Member 387988117-Jan-08 17:18
Member 387988117-Jan-08 17:18 
Questioncreate outlook meeting request in asp.net Pin
bokuceres17-Jan-08 16:14
bokuceres17-Jan-08 16:14 
GeneralRe: create outlook meeting request in asp.net Pin
Sun Rays17-Jan-08 19:11
Sun Rays17-Jan-08 19:11 
GeneralRe: create outlook meeting request in asp.net Pin
bokuceres17-Jan-08 22:38
bokuceres17-Jan-08 22:38 
Hhhhhmmmmm thx Sun Rays...

i didn't quite get the answer from ur google key words but i managed get the answer, but thx anyway for ur support...

i post the enlightenment for this issue just in case there's someone in the world being order by his/her manager to send outlook meeting request in asp.net apps :p

public static void CreateMeetingRequest(string toEmail, string subject, string body, DateTime startDate , DateTime endDate)

{

Microsoft.Office.Interop.Outlook.Application objOL = new Microsoft.Office.Interop.Outlook.Application();

Microsoft.Office.Interop.Outlook.AppointmentItem objAppt = (Microsoft.Office.Interop.Outlook.AppointmentItem)objOL.CreateItem(OlItemType.olAppointmentItem);

objAppt.Start = startDate;

objAppt.End = endDate;

objAppt.Subject = subject;

objAppt.Body = body;

objAppt.MeetingStatus = Microsoft.Office.Interop.Outlook.OlMeetingStatus.olMeeting;

objAppt.RequiredAttendees = toEmail;

objAppt.Send();

objAppt = null;

objOL = null;

}

CreateMeetingRequest(someone@bla.com,"Hello test","Cool it works",DateTime.Now.AddDays(1),DateTime.Now.AddDays(1).AddHours(1));

QuestionImplement Moving content/text in website. Pin
$unil Dhiman17-Jan-08 15:37
$unil Dhiman17-Jan-08 15:37 
GeneralRe: Implement Moving content/text in website. Pin
$unil Dhiman17-Jan-08 15:42
$unil Dhiman17-Jan-08 15:42 
GeneralRe: Implement Moving content/text in website. Pin
Sun Rays17-Jan-08 19:18
Sun Rays17-Jan-08 19:18 
GeneralRe: Implement Moving content/text in website. Pin
$unil Dhiman17-Jan-08 19:44
$unil Dhiman17-Jan-08 19:44 
Questiondowloading multiple files from remote server to client's local drive [modified] Pin
MikeMort17-Jan-08 11:52
MikeMort17-Jan-08 11:52 
QuestionUser access and options validation Pin
emiaj17-Jan-08 7:01
emiaj17-Jan-08 7:01 
GeneralRe: User access and options validation Pin
pmarfleet17-Jan-08 8:37
pmarfleet17-Jan-08 8:37 
GeneralRe: User access and options validation Pin
emiaj17-Jan-08 14:25
emiaj17-Jan-08 14:25 
GeneralRe: User access and options validation Pin
bokuceres17-Jan-08 16:22
bokuceres17-Jan-08 16:22 
GeneralRe: User access and options validation Pin
emiaj18-Jan-08 2:53
emiaj18-Jan-08 2:53 
GeneralASP.NET projects without IIS Pin
Diego F.17-Jan-08 6:51
Diego F.17-Jan-08 6:51 
GeneralRe: ASP.NET projects without IIS Pin
pmarfleet17-Jan-08 8:31
pmarfleet17-Jan-08 8:31 
QuestionExcelSheet Problem Pin
rishi.kasnia17-Jan-08 4:50
rishi.kasnia17-Jan-08 4:50 
GeneralRe: ExcelSheet Problem Pin
Paddy Boyd17-Jan-08 5:28
Paddy Boyd17-Jan-08 5:28 
GeneralRe: ExcelSheet Problem Pin
rishi.kasnia17-Jan-08 17:59
rishi.kasnia17-Jan-08 17:59 
GeneralRe: ExcelSheet Problem Pin
Paddy Boyd17-Jan-08 21:23
Paddy Boyd17-Jan-08 21:23 
GeneralRe: ExcelSheet Problem Pin
rishi.kasnia17-Jan-08 23:10
rishi.kasnia17-Jan-08 23:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.