// Cette ligne de code doit être appelée une seule fois, à l’initialisation de votre application System.Net.ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback (myCertificateValidation); // Méthode myCertificateValidation bool myCertificateValidation(Object sender, System.Security.Cryptography.X509Certificates.X509Certificate cert, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors Errors) { return true; // Vous pouvez être beaucoup plus précis dans la sécurité à mettre en place }
Rechercher dans ce blog
Affichage des articles dont le libellé est ASPX. Afficher tous les articles
Affichage des articles dont le libellé est ASPX. Afficher tous les articles
mardi 18 janvier 2011
Modification des pages personnalisées asp.net pour une connexion sécurisée
dimanche 16 janvier 2011
samedi 15 janvier 2011
Personnaliser l’entête du CRM en fonction de l’organisation
Ajouter dans le fichier :
..\CRMWeb\_common\styles\global-dynamic-styles.css.aspx
au niveau de la classe TD.ms-crm-MastHead-Logo, le code suivant :
<% if (Request.Url.ToString().ToLower().Contains("")) { %> background-position: top left; background-image: url(/_imgs/ .jpg); <% } else { %> background-position: top left; background-image: url(/_imgs/masthead.jpg); <% } %>
Inscription à :
Articles (Atom)