Utilizing the EnableCdn=true attribute in my ScriptManager allows me to replace WebResource.axd and ScriptResource.axd with static links to JavaScript libraries hosted on the MS CDN service. Here's how it looks:
<asp:ScriptManager ID="ScriptManager1" runat="server" EnableCdn="true" />
Is there a way for me to update the URLs or service of the CDN so that I can access the scripts via HTTPS from the MS CDN service instead of HTTP, in order to prevent browser mixed mode warnings? Alternatively, is it possible to switch to a different CDN service or use my own custom one?