Le problème, c'est que sur firefox a la place de charger, il affiche le code HTML de la page. en copiant le code et en compilant la page avec publisher, une partie de la page s'affiche maintenant, mais l'active X nécessaire ne se lance pas (code en Java si je me trompe)
serais-ce possible de rendre cela compatible firefox?
- Code: Tout sélectionner
<html>
<head>
<title>iDVR NetViewer</title>
<script ID="GVnetView" language="javascript" FOR="GVnetView" EVENT="AddServerIP">
var szaddress = GetInputAddress();
GVnetView.AddServer(szaddress);
</script>
<script language="javascript">
<!--
function GetInputAddress()
{
var szaddress=window.location.href;
var nstart=szaddress.indexOf("/");
var szsubaddress=szaddress.substring(nstart+2,szaddress.length);
var nend=szsubaddress.indexOf(":");
if(nend>0)
{
szaddress=szsubaddress.substring(0,nend);
}
else
{
szaddress=szaddress.substring(nstart+2,szaddress.length-1);
}
return (szaddress);
}
-->
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body {
background-color: #666666;
}
.STYLE1 {
font-family: "隶书";
font-size: 18px;
}
.STYLE4 {font-size: 24}
body,td,th {
font-size: medium;
}
.STYLE5 {font-size: 18px}
.STYLE6 {font-family: "Times New Roman", Times, serif}
-->
</style></head>
<body topmargin="0">
<div align="center">
<center>
<p> </p>
<p> </p>
<table border="0" cellpadding="0" cellspacing="0" width="800">
<tr>
<td>
<OBJECT
ID="GVnetView"
WIDTH = 908
HEIGHT = 578
CODEBASE="netView.dll#version=1,1,0,1"
CLASSID="CLSID:7AE259D9-C5F3-40C1-B52E-3975552FAEDF">
</OBJECT>
</td>
</tr>
<tr>
<td class="STYLE1"><p class="STYLE5"><span class="STYLE6">To enable the control to the normal work of the following operations:Tools->Internet Options->Safe->Custom Level->Security level Set to low or to <a href="netView.exe">download</a> and install.</span></p>
<p class="STYLE5"><span class="STYLE6">Pour activer le controle, effectuez les opérations suivantes: Outils-> Options Internet-> Sécurité-> Personnaliser le niveau-> Personnaliser le niveau de sécurité défini à faible ou <a href="netView.exe">TELECHARGEZ</a> le fichier manuelement et installez le.</span></p>
<p class="STYLE5">(<span class="STYLE4">为使控件能正常工作请如下操作:工具->Internet选项->安全->自定义级别->安全级
设置为低 或<a href="netView.exe">下载</a> 后安装</span>)</p></td>
</tr>
</table>
</center>
</div>
</body>
</html>
Ensuite IE installe automatiquement (ou sinon de manière manuelle en téléchargement l'exécutable fournis par le serveur) qui installe une dll sous le system 32 de windows
- Code: Tout sélectionner
;The comment below contains SFX script commands
Path=%windir%\system32
SavePath
Setup=regsvr32 /s netView.dll
Presetup=del %windir%\system32\netView.dll
Overwrite=1
donc peut-on aussi faire de cette dll une extension ou plugin firefox pour rendre cela compatible?
Donc tout ca le plus simplement possible car je suis nul en programmation XD