admin管理员组

文章数量:1323707

I have used ScriptManager.RegisterStartupScript() method in order to show an alert when particular thing happens in back end.It works fine in page load method but not in particular method which is called when a specific button is clicked . I Couldn't find a solution because in another page it works fine in both page load and the method.

Script Manager RegisterStartupScript Method

ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);

HTML

<asp:HiddenField runat="server" ClientIDMode="Static" ID="PostBackController"/>
<button class="some-class" id="btnSave" runat="server" onclick="btnSave_clientClick();">SAVE</button>

Javascript

function btnSave_clientClick() {

     // code

     if (some_condition) {

        $('#PostBackController').val("btn_save");
        __doPostBack();

     }
}

Page Load Method

protected void Page_Load(object sender, EventArgs e)
{
    if (PostBackController.Value == "btn_save")
    {
        uploadDocSave_ServerClick();
    }
}

Method Wish should be called when button Clicked

protected void uploadDocSave_ServerClick()
{
    ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);
}

I have used ScriptManager.RegisterStartupScript() method in order to show an alert when particular thing happens in back end.It works fine in page load method but not in particular method which is called when a specific button is clicked . I Couldn't find a solution because in another page it works fine in both page load and the method.

Script Manager RegisterStartupScript Method

ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);

HTML

<asp:HiddenField runat="server" ClientIDMode="Static" ID="PostBackController"/>
<button class="some-class" id="btnSave" runat="server" onclick="btnSave_clientClick();">SAVE</button>

Javascript

function btnSave_clientClick() {

     // code

     if (some_condition) {

        $('#PostBackController').val("btn_save");
        __doPostBack();

     }
}

Page Load Method

protected void Page_Load(object sender, EventArgs e)
{
    if (PostBackController.Value == "btn_save")
    {
        uploadDocSave_ServerClick();
    }
}

Method Wish should be called when button Clicked

protected void uploadDocSave_ServerClick()
{
    ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);
}
Share Improve this question edited Jan 2, 2015 at 10:32 Sid M 4,3544 gold badges32 silver badges51 bronze badges asked Jan 2, 2015 at 10:25 Hanushka SurenHanushka Suren 7933 gold badges10 silver badges34 bronze badges 6
  • add breackpoint on uploadDocSave_ServerClick() and check if its getting called or not? – Sid M Commented Jan 2, 2015 at 10:30
  • I already did. of course, it is getting called. – Hanushka Suren Commented Jan 2, 2015 at 10:34
  • try wrting a return; statement after the line.. it seems there are other codes being executed after the script is registered – D.T. Commented Jan 2, 2015 at 11:09
  • Still not working :( – Hanushka Suren Commented Jan 2, 2015 at 11:36
  • Look at that link please. I hope it helps you. – Orkun Bekar Commented Jan 2, 2015 at 14:40
 |  Show 1 more comment

6 Answers 6

Reset to default 6

My deepest condolences for OP if you still have to work with Webforms. This is how you can solve it in a minimal way while reducing traffic:

Codebehind sample:

public partial class About : Page, IPostBackEventHandler
{
    protected void Page_Init(object sender, EventArgs e)
    {
        // Unless the button is serverside clicking it will reload the page
        // registering the page like this prevents a page reload.
        var scriptManager = ScriptManager.GetCurrent(Page);
        scriptManager?.RegisterAsyncPostBackControl(Page);
    }

    /// <inheritdoc />
    public void RaisePostBackEvent(string eventArgument)
    {
        var javascriptCode = $"alert('server method called and triggered client again. {DateTime.Now.ToString("s")}');";

        // if your key isn't changed this script will only execute once
        ScriptManager.RegisterStartupScript(udpMain, typeof(UpdatePanel), Guid.NewGuid().ToString(), javascriptCode, true);

        // updating the updatepanel will inject your script without reloading anything else
        udpMain.Update();
    }
}

Webforms sample:

<script type="text/javascript">
    function clientFunction(sender, args) {

        alert('client function called');

        <%= Page.ClientScript.GetPostBackEventReference(Page, "callServerFunction") %>

        args.preventDefault();
    }
</script>

<asp:UpdatePanel runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional" ID="udpMain">
    <ContentTemplate>
        <h2><%: Title %>.</h2>
        <h3>Your application description page.</h3>
        <p>Use this area to provide additional information.</p>
        <button onclick="clientFunction(); return false;">raise server function</button>
    </ContentTemplate>
</asp:UpdatePanel>

Try this:

If you Used Update Panels Then You can Use:

ScriptManager.RegisterStartupScript(this, this.GetType(), Guid.NewGuid().ToString(), "javascriptFunction();", true);

Other Wise You can Use

ClientScript.RegisterStartupScript
        (GetType(),Guid.NewGuid().ToString(), "javascriptFunction();",true);

Try this:

Client side:

Use Literal Control
<asp:Literal ID="IMsg" runat="server" Text=""/>

Server side:

string msg = "<script>alert('Change successfully');</script>";
IMsg.Text = msg;

I think it will help you. It works fine in my projects.

Try to remove line containing:

__doPostBack();

in the JavaScript code.

Sorry I am late at the party. Use this overload of RegisterStartupScript method, and set the first parameter the button on which you want to click to register the javascript function. Like:

ScriptManager.RegisterStartupScript(btnSave, this.GetType(), "alert", "alert('msg');", true);

Cheers!

THE REALLY SIMPLE WAY

You can wire up a <button runat="server"></button> to a server event using the onserverclick attribute:

HTML:

<button class="some-class" id="btnSave" onserverclick="uploadDocSave_ServerClick" runat="server">SAVE</button>

C# Handler:

protected void uploadDocSave_ServerClick(Object sender, EventArgs args)
{
    ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);
}

WITH CLIENT SIDE VALIDATION

If you want to add some sort of JavaScript check before postback, you can do that from the onclick attribute:

HTML:

<button class="some-class" id="btnSave" onclick="return btnSave_clientClick();" onserverclick="uploadDocSave_ServerClick" runat="server">SAVE</button>

JavaScript:

function btnSave_clientClick() {

     // code

     if (some_condition) {

        return true; // allows the control to do a postback

     }
}

C# Handler:

protected void uploadDocSave_ServerClick(Object sender, EventArgs args)
{
    ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", "alert('msg');", true);
}

本文标签: javascriptScriptManagerRegisterStartupScript() method not workingASPNETcStack Overflow