ASP.NET inject javascript in user control nested in update panel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:56:04Z http://stackoverflow.com/feeds/question/301471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel 2 ASP.NET inject javascript in user control nested in update panel derSteve 2008-11-19T10:26:21Z 2008-12-02T01:57:15Z <p>Hi folks,</p> <p>I'm trying to load javascript code with a user web control into a page via a the Page.LoadControl method during an asyncron post back of an update panel.</p> <p>I've tried the specially for that scenario designed methods of the scriptmanager, but the javascript just doens't get returned to the user.</p> <p>To explain my scenario a bit better:</p> <p>Master Page has the script manager and one page loads the user control via Page.LoadControl-method during an async post back. The custom control injects in the prerender event handler the javascript. Is that a matter of timing to inject the js or is it just not possible to do so?</p> <p>Hope some one has an idea for that. Heaps thanks in advance, derSteve</p> http://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel/301972#301972 2 Answer by rams for ASP.NET inject javascript in user control nested in update panel rams 2008-11-19T14:08:01Z 2008-11-19T14:08:01Z <p>Have your tried </p> <pre><code>Page.ClientScript.RegisterStartUpScript(GetType(Page), "key", &lt;your script here&gt;, addSctiptTags:=true) </code></pre> <p>We do this in our User Controls and it works for us</p> <p>HTH</p> http://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel/303209#303209 3 Answer by korchev for ASP.NET inject javascript in user control nested in update panel korchev 2008-11-19T20:20:59Z 2008-11-19T20:20:59Z <p>You can use the RegisterStartupScript method of the ScriptManager class to inject executable script:</p> <pre><code>public partial class WebUserControl : System.Web.UI.UserControl { protected void Page_PreRender(object sender, EventArgs e) { ScriptManager.RegisterStartupScript(this, GetType(), ClientID, "alert(1)", true); } } </code></pre> http://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel/319348#319348 0 Answer by derSteve for ASP.NET inject javascript in user control nested in update panel derSteve 2008-11-26T00:17:43Z 2008-11-26T00:17:43Z <p>Hi all,</p> <p>I've actually tried your suggestion and it works for the case that you inject javascript code. But what about injecting a javascript-file? Let's say I have a corresponding js-file which my custom control needs. How do I inject that in the code?</p> <p>Thanks to all in advance, derSteve</p> http://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel/332812#332812 2 Answer by rams for ASP.NET inject javascript in user control nested in update panel rams 2008-12-02T01:57:15Z 2008-12-02T01:57:15Z <p>For that you can do</p> <pre><code>string scr; scr = "&lt;script src='/scripts/myscript.js'&gt;&lt;/script&gt;" Page.ClientScript.RegisterStartupScript(GetType(Page), "key", scr, false) </code></pre> <p>HTH</p>