accessy outlook custom forms from the web in exchange server

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
 
B

Boris

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 -->
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top