Problème pour executer lotus sur le poste client - HTML/CSS - Programmation
Marsh Posté le 08-03-2006 à 20:20:44
Prefixe notes:// avec la base la vue etc. tout simplement
Marsh Posté le 09-03-2006 à 09:38:29
Il y a juste une erreure de frappe (il manque un + après login)
wshShell.Run("C:\Program Files\Lotus\Notes\notes.exe =c:\use" + login + "\Lotus\Notes\Data\notes.ini", 1, true);
Marsh Posté le 20-04-2005 à 15:16:18
Mon problème est que je n'arrive pas à lancer lotus notes sur le poste client .
Si vous pouviez m'aider je serai soulagé.
Voici ma page: (page ASP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<script language="JavaScript" type="text/javascript">
function execAppli(login)
{
var wshShell = new ActiveXObject("WScript.Shell" );
wshShell.Run("C:\Program Files\Lotus\Notes\notes.exe =c:\use"+login"\Lotus\Notes\Data\notes.ini", 1, true);
}
</script>
</head>
</head>
<body>
<%
xLogIn=Request.ServerVariables("LOGON_USER" )
login=ucase(right(xLogIn,7))
%>
<table width="195" border="1" bordercolor="#0" cellspacing="0">
<tr align=center>
<font face="Verdana" size="2" color="#FFFFFF">
<td bgcolor="#007665" onmouseover="this.style.cursor='hand'" onclick="execAppli(login)">
<font face="Verdana" size="2" color="#FFFFFF">Mon Lotus</font>
</td>
</tr>
</table>
</body>
</html>