• DELETE FROM KEYWORDS WHERE ID_DOMAINE=100071
  • DoneDoneDone

    URL:www.iis.net

    Connection: keep-alive
    Date: Fri, 01 Nov 2024 00:25:38 GMT
    Content-Length: 0
    Content-Type: text/html
    Location: https://www.iis.net/
    x-azure-ref: 20241101T002538Z-1855946887dnw4ppwm8mz5334c0000000aag00000000401q
    X-Cache: CONFIG_NOCACHE
    
    
    Location => https://www.iis.net/
    Status => 307

    (vide) Tentative en https

    https://www.iis.net/

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
        <title> Home : The Official Microsoft IIS Site </title>
        <link type="image/ico" href="/favicon.ico">
        
        <link href="/Content/downloads.css" rel="stylesheet" />
    
    
        
        <script type="text/javascript" src="https://consentdeliveryfd.azurefd.net/mscc/lib/v2/wcp-consent.js"></script>
        <script type="text/javascript" src="https://js.monitor.azure.com/scripts/c/ms.analytics-web-3.min.js"></script>
        <script>
            var siteConsent = null;
            const analytics = new oneDS.ApplicationInsights();
            var config = {
                instrumentationKey: "4181d76f98054ec6a4a9b8e669b3d510-a9e74d90-c641-41b4-8498-056decd0ac58-7286",
                channelConfiguration: { // Post channel configuration
                    eventsLimitInMem: 5000
                },
                propertyConfiguration: { // Properties Plugin configuration
                    env: "PROD", // Environment can be set to PPE or PROD as needed.
                    gpcDataSharingOptIn: false, // Include the CCPA "GPC_DataSharingOptIn" property as false
                    callback: {
                        userConsentDetails: WcpConsent !== 'undefined' && WcpConsent.siteConsent ? WcpConsent.siteConsent.getConsent : undefined
                    },
                },
                webAnalyticsConfiguration: { // Web Analytics Plugin configuration
                    //urlCollectQuery:true,
                    autoCapture: {
                        scroll: true,
                        pageView: true,
                        onLoad: true,
                        onUnload: true,
                        click: true,
                        resize: true,
                        jsError: true
                    }
                }
            };
    
            //Initialize SDK
            analytics.initialize(config, []);
    
            window.addEventListener('DOMContentLoaded', function () {
                manageCaliforniaPrivacy();
                function onConsentChanged(categoryPreferences) { console.log("onConsentChanged", categoryPreferences); }
                WcpConsent.init("en-US", "cookie-banner", function (err, _siteConsent) {
                    if (err != undefined) {
                        return error;
                    } else {
                        siteConsent = _siteConsent; //siteConsent is used to get the current consent
                    }
                });
    
                siteConsent.onConsentChanged(watchConsentChanges);
    
                if (siteConsent.isConsentRequired) {
                    document.getElementsByClassName('manageCookieChoice')[0].style.display = 'inline-block';
                }
                else {
                    //$(".manageCookieChoice").css("display", "none");
                    document.getElementsByClassName('manageCookieChoice')[0].style.display = 'none';
                }
    
    
                function getUserConsent() {
                    var userConsent = siteConsent.getConsent();
                    //response will look like this
                    //{"Required":true,"Analytics":true,"SocialMedia":false,"Advertising":false}
                }
                function dropSocialMediaCookies() {
                    if (siteConsent.getConsentFor(WcpConsent.consentCategories.SocialMedia)) {
                        //Drop social media cookies
                    }
                }
            });
            function manageConsent() {
                if (siteConsent.isConsentRequired) {
                    siteConsent.manageConsent();
                }
            }
    
            function manageCaliforniaPrivacy() {
                //Link is required in the footer to comply with the California Privacy Rights Act
                let tZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
                if (tZone.toLowerCase() == 'america/los_angeles') {
                    document.getElementsByClassName('managePrivacyChoice')[0].style.display = 'inline-block';
                }
                else {
                    document.getElementsByClassName('managePrivacyChoice')[0].style.display = 'none';
                }
    
            }
    
            function clearCookie(name, domain, path) {
                try {
                    function Get_Cookie(check_name) {
                        // first we'll split this cookie up into name/value pairs
                        // note: document.cookie only returns name=value, not the other components
                        var a_all_cookies = document.cookie.split(';'),
                            a_temp_cookie = '',
                            cookie_name = '',
                            cookie_value = '',
                            b_cookie_found = false;
    
                        for (i = 0; i < a_all_cookies.length; i++) {
                            // now we'll split apart each name=value pair
                            a_temp_cookie = a_all_cookies[i].split('=');
    
                            // and trim left/right whitespace while we're at it
                            cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');
    
                            // if the extracted name matches passed check_name
                            if (cookie_name == check_name) {
                                b_cookie_found = true;
                                // we need to handle case where cookie has no value but exists (no = sign, that is):
                                if (a_temp_cookie.length > 1) {
                                    cookie_value = unescape(a_temp_cookie[1].replace(/^\s+|\s+$/g, ''));
                                }
                                // note that in cases where cookie is initialized but no value, null is returned
                                return cookie_value;
                                break;
                            }
                            a_temp_cookie = null;
                            cookie_name = '';
                        }
                        if (!b_cookie_found) {
                            return null;
                        }
                    }
    
                    if (Get_Cookie(name)) {
                        var domain = domain || document.domain;
                        var path = path || "/";
                        var today = new Date();
                        var expiryDate = new Date();
                        expiryDate.setDate(today.getDate() - 2);
                        document.cookie = name + "=; expires=" + expiryDate + "; domain=" + domain + "; path=" + path;
                    }
                }
                catch (err) { }
            };
        </script>
        <script id="uhf-footer-ccpa">
            //Detect GPC
            const globalPrivacyControlEnabled = navigator.globalPrivacyControl;
    
            // set data sharing opt-in to false when GPC/AMC controls detected
            const GPC_DataSharingOptIn = (globalPrivacyControlEnabled) ? false : checkThirdPartyAdsOptOutCookie();
            analytics.getPropertyManager().getPropertiesContext().web.gpcDataSharingOptIn = GPC_DataSharingOptIn;
    
            //Detect AMC opt out choice
            function checkThirdPartyAdsOptOutCookie() {
                try {
                    const ThirdPartyAdsOptOutCookieName = '3PAdsOptOut';
                    var cookieValue = getCookie(ThirdPartyAdsOptOutCookieName);
                    console.log("cookie value", cookieValue);
                    // for unauthenticated users
                    return cookieValue != 1;
                } catch {
                    return true;
                }
            }
    
            function getCookie(cookieName) {
                var cookieValue = document.cookie.match('(^|;)\\s' + cookieName + '\\s*=\\s*([^;]+)');
                return (cookieValue) ? cookieValue[2] : '';
            }
        </script>
        <script type="text/javascript" src="https://iisumbraco.blob.core.windows.net/media/7435263/jquery-3.5.1.min.js"></script>
        <script type="text/javascript" src="https://iisumbraco.blob.core.windows.net/media/7435263/main.js"></script>
    </head>
    

    Home : The Official Microsoft IIS Site

    Recherche META Description de la page

    Recherche META Keywords de la page

    UPDATE DOMAINES SET server='',redirection='https://www.iis.net/',Status='200',err='',[TITRE]=N'Home : The Official Microsoft IIS Site',[DESCRIPTION]=N'',[KEYWORDS]=N'' WHERE id=100071
  • 0

    Home : The Official Microsoft IIS Site

  • 0. Home (4)
  • --------->0
  • 1. : (1)
  • --------->0
  • 2. The (3)
  • --------->0
  • 3. Official (8)
  • --------->0
  • 4. Microsoft (9)
  • --------->0
  • 5. IIS (3)
  • --------->0
  • 6. Site (4)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'Home',100071),(N':',100071),(N'The',100071),(N'Official',100071),(N'Microsoft',100071),(N'IIS',100071),(N'Site',100071)