I'd like to use the ScriptManager and CompositeScript components in my master page to include site-wide javascript, but add to that list in my "Web Content Form". I'm sure that can be done in the code-behind, but optimally I'd like to do it in markup. Can this sort of thing be done?
In: MasterPage.master
<asp:ScriptManager ID="ScriptManager" runat="server" EnableScriptCombine="True">
<CompositeScript>
<Scripts>
<asp:ScriptReference name="" Assembly="" Path="/client/js/main.js"/>
</Scripts>
</CompositeScript>
</asp:ScriptManager>
In: Content.aspx
<asp:ScriptReference name="" Assembly="" Path="/client/js/other.js"/>