I've registered bundle in BundleConfig like this:
bundles.Add(new ScriptBundle("~/bundles/jqueryupload").Include(
"~/Scripts/jquery.upload-1.0.2.min.js"));
And want to render it on the view like this:
@Scripts.Render("~/bundles/jqueryupload")
But my sript is not included in the page. Any thoughts? Thanks!