Procedura: rilevare se il plug-in WPF per Firefox è installato o meno
Il plug-in Windows Presentation Foundation (WPF) per Firefox consente di eseguire nel browser Mozilla Firefox file di un'XAML browser applications (XBAPs) e file XAML separati. In questo argomento viene fornito uno script HTML e JavaScript utilizzabile dagli amministratori per determinare se il plug-in WPF per Firefox 2.0+ è installato o meno.
Nota |
---|
Per ulteriori informazioni sull'installazione, la distribuzione e il rilevamento di .NET Framework, vedere Where to Obtain the .NET Framework Redistributable Package. |
Esempio
Quando viene installato .NET Framework 3.5, il computer client viene configurato con un plug-in WPF per Firefox. Lo script di esempio verifica la presenza del plug-in WPF e quindi visualizza un messaggio di stato appropriato.
<HTML>
<HEAD>
<TITLE>Test for the WPF plug-in for Firefox</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
<SCRIPT type="text/javascript">
<!--
function OnLoad()
{
// Check for the WPF plug-in for Firefox and report
var msg = "The WPF plug-in for Firefox is ";
var wpfPlugin = navigator.plugins["Windows Presentation Foundation"];
if( wpfPlugin != null ) {
document.writeln(msg + " installed.");
}
else {
document.writeln(msg + " not installed. Please install or reinstall the .NET Framework 3.5.");
}
}
-->
</SCRIPT>
</HEAD>
<BODY onload="OnLoad()" />
</HTML>
Se la verifica della presenza del plug-in WPF per Firefox ha esito positivo, verrà visualizzato il messaggio di stato seguente:
The WPF plug-in for Firefox is installed.
In caso contrario, il messaggio di stato visualizzato sarà il seguente:
The WPF plug-in for Firefox is not installed. Please install or reinstall the .NET Framework 3.5.
Vedere anche
Attività
Procedura: verificare se .NET Framework 3.5 è installato