Hi there
Is it safe to include a jQuery script by using the asp.net method ClientScriptManager.RegisterStartupScript ?
http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx
As example within a Page:
this.ClientScript.RegisterStartupScript(typeof(string), "script1", "$('#test').hide();", true);
Could this cause any issues?
Thanks