Hi Geoff,
Difficult to know without know what your trying...but here some c# code I use to inject js scripts..
Difficult to know without know what your trying...but here some c# code I use to inject js scripts..
public static void IncludeJsFile(Page page, string id, string href)
{
if (!string.IsNullOrEmpty(href))
{
if (!page.ClientScript.IsClientScriptIncludeRegistered(id))
{
page.ClientScript.RegisterClientScriptInclude(id, href);
}
}
}