This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Description
I work with VS2015 and MVC 6 RC (based on the MS standard-template) and noted problems with some links (e.g. bootstrap -glyphicon where not showed anymore in staging/production, where I had not problems in the dev-environment).
After searching for hours, I have found, that the site ajax.aspnetcdn.com seems to be down (at least for Switzerland).
Further, also the fallback seems not to work (as it should have been triggere, when the default-link cannot be accessed).
So I have deactivated the main-link, and activated the local link as standard instead and anything works again:
<environment names="Staging,Production">
@* Deactivated, as https://ajax.aspnetcdn.com is not reachable *@
@*<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap.min.css"*@
@* Instead set local reference as default *@
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css"
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
So...:
- Can anybody confirm, that ajax.aspnetcdn.com down is down?
- If yes, why can't I found any official information about on the internet (this would various sites!)
- Why does the fallback don't work?
Thanks