Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6074349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:22:20+00:00 2026-05-23T10:22:20+00:00

I want to call jQuery function from server. The server side button that calls

  • 0

I want to call jQuery function from server.
The server side button that calls function is inside an UpdatePanel.
this is server side function :

//Button Click handler (It is inside Updatepanel)
string ScriptName = null;
ScriptName = "function pageLoad(sender, args) { if (args.get_isPartialLoad()) {DisplayMessage(); }}";
ScriptManager.RegisterStartupScript(this, GetType(), "DisplayMessage", ScriptName, true);

and this is client side function :

 <script type="text/javascript">
        function DisplayMessage() {
            //Alert("Called");

        }
</script>

It doesn’t work.

What’s wrong ? (Is my question and problem clear?)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:22:21+00:00Added an answer on May 23, 2026 at 10:22 am

    That’s weird, as the following works perfectly fine for me:

    <%@ Page Language="C#" %>
    <script type="text/c#" runat="server">
        protected void BtnTrigger_Click(object sender, EventArgs e)
        {
            string script = "function pageLoad(sender, args) { if (args.get_isPartialLoad()) {DisplayMessage(); }}";
            ScriptManager.RegisterStartupScript(
                this, 
                GetType(), 
                "DisplayMEssage", 
                script, 
                true
            );
        }
    </script>
    
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script type="text/javascript">
            function DisplayMessage() {
                alert('called');
            }
        </script>
    </head>
    <body>
        <form id="Form1" runat="server">
            <asp:ScriptManager ID="scm" runat="server" />
    
            <asp:LinkButton 
                ID="BtnTrigger" 
                runat="server" 
                Text="Trigger" 
                OnClick="BtnTrigger_Click" 
            />
    
            <asp:UpdatePanel ID="up" runat="server">
                <Triggers>
                    <asp:AsyncPostBackTrigger 
                        ControlID="BtnTrigger" 
                        EventName="Click" 
                    />
                </Triggers>
            </asp:UpdatePanel>
        </form>
    </body>
    </html>
    

    Also do you really need all the complex script, why not simply use string script = "DisplayMessage();";?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to call a function from a .NET DLL (coded in C#) from
I want to call a c# function from my javascript function. I have a
Is there any way how to call JQuery function from PageLoad C# file? Basically
I have a jquery Ajax call function that I use to submit form to
I use this inside a function, document.getElementById(DeleteConfirmationdiv).style.display = 'block'; now I want to launch
I want to call my .NET code from unmanaged C++. My process entrypoint is
I want to call some RESTful web services from a J2ME client running on
I want to call an ASHX file and pass some query string variables from
I want to call a function (which calculates my version number) when my NSIS
I have the following jquery code: jQuery(function(){ jQuery(select#rooms).change(function(){ var options = ''; jQuery.getJSON(/admin/selection.php,{id: jQuery(this).val(),

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.