accessy outlook custom forms from the web in exchange server

  • Thread starter Thread starter M Wazzan
  • Start date Start date
M

M Wazzan

Would you please hint me if we can access custom outlook
forms from the web in exchange server so that we can
access them the same way we access the inbox in the web
interface of exchange server

thank you
 
There is a very simple way of accessing your forms from
the web with Java script. Just make sure your Outlook is
running when you use this script, otherwise it will not
work. Here's the code:

<!-- Enable Stealth Mode

// Variable Definitions

var nameSpace = null;

var mailFolder = null;

var mailItem = null;

var tempDoc = null;

var outlookApp = null;

function OpenOutlookDoc(whatform)

{

try

{

outlookApp = new ActiveXObject
("Outlook.Application");

nameSpace = outlookApp.getNameSpace("MAPI");

mailFolder = nameSpace.getDefaultFolder(6);

mailItem = mailFolder.Items.add(whatform);

mailItem.Display(0)

}

catch(e)

{

// act on any error that you get

}

}

// Disable Stealth Mode -->
 
Back
Top