Is there a way to replicate the behaviour of the @:Scripts/Styles.Render
helper from code behind?
If I reference the bundles by using the BundleTable.Bundles.ResolveBundleUrl
method, then bundling and minification occurs even with debug=true
. I've read other questions, and the solution seems far obvious, by using the previously mentioned helper. But in my case, I don't know the name of the bundle while in the aspx, and it's generated in runtime in the code behind.
So, I need to add the references in the head, from the code behind, and I can't find a way to do it.
Is there a way? Or will I be forced to do it in the .aspx file?