Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
In DiploTraceLogViewer.ascx there are two references to the aspnetcdn which use explicit HTTP:// references.
They ought to be scheme agnostic so that they can be loaded from HTTPS where appropriate.
Change:
<script src="http://ajax.aspnet.....
to
<script src="//ajax.aspnet.....
and
<link ... href="http://ajax.aspnet....
<link ... href="//ajax.aspnet...
Cheers,
Gary
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Minor bug when using HTTPS
In DiploTraceLogViewer.ascx there are two references to the aspnetcdn which use explicit HTTP:// references.
They ought to be scheme agnostic so that they can be loaded from HTTPS where appropriate.
Change:
<script src="http://ajax.aspnet.....
to
<script src="//ajax.aspnet.....
and
<link ... href="http://ajax.aspnet....
to
<link ... href="//ajax.aspnet...
Cheers,
Gary
is working on a reply...