> Tech > Listing 3

Listing 3

Tech - Par Renaud ROSSET - Publié le 24 juin 2010
email

Procédures ShowActions et InvokeURLAction côté client

<script language=vbscript>

  Sub ShowActions(strTableName)
    ‘ Toggle the display of the Action list.
    If document.all(strTableName).style.display = “block” Then
      document.all(strTableName).style.display = “none”
    Else
      document.all(strTableName).style.display = “block”
    End If
  End Sub
  
  Sub InvokeURLAction(strURL, strTableName)
  ‘ Open the URL in a new window and hide the Action table.

window.open(strURL)
document.all(strTableName).style.display = “none”
End Sub

</script>

Téléchargez cette ressource

Phishing : Match PKI Versus MFA

Phishing : Match PKI Versus MFA

Au-delà des technologies de protection, les entreprises doivent s’appuyer sur des plateformes qui englobent tous les défis cyber liés à l’authentification des personnes et des machines, quels sont les avantages d’une Infrastructure à Clé Publique (PKI) vis-à-vis de la MFA ?

Tech - Par Renaud ROSSET - Publié le 24 juin 2010