ASP.NET inject javascript in user control nested in update panel - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:56:04Zhttp://stackoverflow.com/feeds/question/301471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301471/asp-net-inject-javascript-in-user-control-nested-in-update-panel2ASP.NET inject javascript in user control nested in update panelderSteve2008-11-19T10:26:21Z2008-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#3019722Answer by rams for ASP.NET inject javascript in user control nested in update panelrams2008-11-19T14:08:01Z2008-11-19T14:08:01Z<p>Have your tried </p>
<pre><code>Page.ClientScript.RegisterStartUpScript(GetType(Page), "key", <your script here>, 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#3032093Answer by korchev for ASP.NET inject javascript in user control nested in update panelkorchev2008-11-19T20:20:59Z2008-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#3193480Answer by derSteve for ASP.NET inject javascript in user control nested in update panelderSteve2008-11-26T00:17:43Z2008-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#3328122Answer by rams for ASP.NET inject javascript in user control nested in update panelrams2008-12-02T01:57:15Z2008-12-02T01:57:15Z<p>For that you can do</p>
<pre><code>string scr;
scr = "<script src='/scripts/myscript.js'></script>"
Page.ClientScript.RegisterStartupScript(GetType(Page), "key", scr, false)
</code></pre>
<p>HTH</p>