Following code:
<script runat="server"> protected override void OnLoad(EventArgs e) { SiteAlert.FeedURL = "https://www.domain.com/sitealert.xml"; base.OnLoad(e); } </script>
The SiteAlert.xml looks like the following:
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0"> <channel>
<item>
<title>Website Construction</title>
<description>
<![CDATA[
Our website will be under construction until October 15, 2015.
]]>
</description>
</item>
</channel> </rss>
We are trying to put an EV Certificate on our website, and the code will not change to HTTPS successfully, when changing the website URL from HTTP to HTTPS. I also used the following code with the same result:
<script runat="server"> protected override void OnLoad(EventArgs e) { Sit ...
Go to the complete details ...