After recently adding SSL to some pages on my website, I encountered an issue when trying to call a secured web page
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="https://www.myDomain.com/test/Style/Secure/en/BodyStyle.css" rel="stylesheet" />
</head>
<body>
<form id="form1" runat="server">
<div>
Test Https
</div>
</form>
</body>
</html>
When calling the page, the CSS displayed a response that indicated the SSL settings on the Test folder were set to Accept in the IIS 7.
How can I resolve this issue and ensure the CSS file is called over https normally?