vote up 2 vote down star
3

Hi folks,

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.

I've tried the specially for that scenario designed methods of the scriptmanager, but the javascript just doens't get returned to the user.

To explain my scenario a bit better:

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?

Hope some one has an idea for that. Heaps thanks in advance, derSteve

flag

17% accept rate

4 Answers

vote up 2 vote down check

For that you can do

string scr;
scr = "<script src='/scripts/myscript.js'></script>"
Page.ClientScript.RegisterStartupScript(GetType(Page), "key", scr, false)

HTH

link|flag
vote up 2 vote down

Have your tried

Page.ClientScript.RegisterStartUpScript(GetType(Page), "key", <your script here>, addSctiptTags:=true)

We do this in our User Controls and it works for us

HTH

link|flag
vote up 3 vote down

You can use the RegisterStartupScript method of the ScriptManager class to inject executable script:

public partial class WebUserControl : System.Web.UI.UserControl
{          
    protected void Page_PreRender(object sender, EventArgs e)
    {
        ScriptManager.RegisterStartupScript(this, GetType(), ClientID, "alert(1)", true);
    }
}
link|flag
vote up 0 vote down

Hi all,

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?

Thanks to all in advance, derSteve

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.