opening the forms in intranet

M

Mohan

hello sir,
i created my form and i published in the organizational form library also.i
opened the form in the html page like

<html>
<head>
<script language="JavaScript" type="text/JavaScript">
<!-- 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 -->
</script>
</head>
<body>
<form>
To use form buttons:<br>
<input type=button value="Form A" NAME="OutlookOpen1"
OnClick="OpenOutlookDoc('IPM.Note.leave request')"><br><br>
</form>
</body>
</html>

this and does not create any problem.here when i click the link its opening
with out any problem.
when i placed the form in our intranet then the problem arise.it wont open
any from.i just palce the above page server with out making any change.

is there any need to change the code for to page ?

actually where the form is stored in the exchange server.i need the
physical path of the form.when i search for the form its showing the path
like "C:\Documents and Settings\Administrator\Local Settings\Application
Data\Microsoft\FORMS\IPM.Note.leave request\FS174.tmp"


how can i open the form in my intranet site?

thx
mohan
 

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