HTML источник повторяется дважды - PullRequest
0 голосов
/ 05 ноября 2019

У меня есть приложение, где HTML-код повторяется дважды, весь HTML-раздел появляется дважды. Это происходит в IE11 и Chrome на Citrix. При доступе к приложению без Citrix оно отображается нормально.

Использование

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="Expires" content="0"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta http-equiv="cache-control" content="no-cache, must-revalidate"/>
    <title>DCS IDP Administration</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <!--link rel="icon" type="image/png" href="images/favicon.png" /-->
    <!-- Optional theme -->
    <!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
    <!--link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.3.1/flatly/bootstrap.min.css" rel="stylesheet"-->
    <link rel="stylesheet"
          href="http://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
          integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
          crossorigin="anonymous"/>

    <style>
        .custom {
            width: 82px !important;
        }
        .form-group.required .control-label:after {
            content:"*";
            color:red;
        }
    </style>
</head>
<body>

.
.
.
</body>
</html>
...