THY02K
February 15th, 2005, 09:01 AM
When I do this:
using outlook=Microsoft.Office.Interop.Outlook;
...
outlook.Application outLookApp = new outlook.ApplicationClass();
outlook.TaskItem newTask = (outlook.TaskItem) outLookApp.CreateItem(outlook.OlItemType.olTaskItem);
newTask.Body = "MIS Testing: Norman";
newTask.DueDate = DateTime.Now;
newTask.Importance = outlook.OlImportance.olImportanceHigh;
newTask.Subject = "MIS Testing: Norman";
newTask.Save();
...
Microsoft Outlook Security popup alert:
"A program is trying to access ... you have stored in Outlook. Do you want to allow this?"
For your reference... (http://www.contextmagic.com/express-clickyes/)
I am trying to setup tasks and meeting from an ASP.NET application, is there any way I can avoid this? There won't be a person to deal with this popup on server side. Thanks in advance.
using outlook=Microsoft.Office.Interop.Outlook;
...
outlook.Application outLookApp = new outlook.ApplicationClass();
outlook.TaskItem newTask = (outlook.TaskItem) outLookApp.CreateItem(outlook.OlItemType.olTaskItem);
newTask.Body = "MIS Testing: Norman";
newTask.DueDate = DateTime.Now;
newTask.Importance = outlook.OlImportance.olImportanceHigh;
newTask.Subject = "MIS Testing: Norman";
newTask.Save();
...
Microsoft Outlook Security popup alert:
"A program is trying to access ... you have stored in Outlook. Do you want to allow this?"
For your reference... (http://www.contextmagic.com/express-clickyes/)
I am trying to setup tasks and meeting from an ASP.NET application, is there any way I can avoid this? There won't be a person to deal with this popup on server side. Thanks in advance.