I\'m maintaining a legacy javascript application which has its components split into 4 JS files.
They are \"Default.aspx\", \"set1.aspx\", \"set2.aspx\" and \"set3.a
If you could use JQuery you could use the following:
$.getScript("set1.aspx?v=1234");
This loads the script into the global javascript context. Make sure you set contenttype of the response to "text/javascript".
Hope this helps...