I am using Bundles with CDN in my ASP MVC web application.
bundles.Add(new ScriptBundle("~/bundles/HomeJs", Util.BuildCDNURL("../../bundles/HomeJs"))
.Include("~/Scripts/HomePage.js"));
As I understand, the bundles are registered in the App_Start(), where I am calling it.
However, I would like to add some extra logic to my Util.BuildCDNURL() method based on the current user request. In my app, I have a "Use CDN" value for each user login.
Can I manipulate my CDN path based on this value, different for every user?
I use the following to change the directory from where to take the css files. You could use the same thing with your CDN path to build the bundles.
Then use it inside the view like so: