I am looking for a way to insert a javascript code block at the end of an ASP.NET page.
Page.ClientScript.RegisterClientScriptBlock(typeof(Page), "showVideo", sScript, true);
is added to the body, but js codes always request some js files that don't load, or some functions below the script.
How can I add scripts that I dynamically generated in the lower body?
Thanks for your help.
source share