I need some help with Rejuicer. I just inherited a C# webapplication that uses it and I cannot figure out what exactly is going on.
in the global.asmx.cs under Application_Start we are
OnRequest.ForJs("~/Combined-{0}.js")
.Combine
.FilesIn("~/js-survey/")
.Matching("*.js")
.Configure();
I believe this is combining all the *.js in the js-survey/ folder into a single js called Combined-Uniquename.js. Is this combining the file on the server?
Then in the Master Page it is using
"<%# Rejuiced.JsFor("~/Combined-{0}.js") %>"
is this retrieving the file from the server?
How can I test these?
s