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

  • SEARCH
  • Home
  • 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 6215225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:01:02+00:00 2026-05-24T07:01:02+00:00

How to Detect ASP.Net Asynchronous PostBack and its settings like control and UpdatePanel that

  • 0

How to Detect ASP.Net Asynchronous PostBack and its settings like control and UpdatePanel that caused PostBack and the using PageRequestManager Events in JavaScript and here is an example of what I am doing :

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="up1" runat="server">
    <ContentTemplate>
        <asp:Button ID="Button1" runat="server" Text="Button" />
    </ContentTemplate>
    <Triggers>
    <asp:AsyncPostBackTrigger ControlID = "Button1" EventName = "Click" />
    </Triggers>
</asp:UpdatePanel>
</form>

<script type="text/javascript">
//////////////
//some javascript code 
/////////////
</script>
</body>
</html>

What I want is to use JavaScript to detect this post back.

  • 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-24T07:01:03+00:00Added an answer on May 24, 2026 at 7:01 am
    var prm = Sys.WebForms.PageRequestManager.getInstance();
    if (prm != null) {
        prm.add_beginRequest(function (sender, e) {
            //Event raised when the Async Postback is started.
    
            //Detect whether the request is Async
            var isAsync = sender._postBackSettings.async;
    
            //Detect Id of the control that caused the postback.
            var controlId = sender._postBackSettings.sourceElement.id;
    
            //Id of the updatepanel that caused the postback
            var updatePanelId = sender._postBackSettings.panelID.split('|')[0];
        });
    }
    prm.add_endRequest(function (sender, e) {
        if (sender._postBackSettings.panelsToUpdate != null) {
            //Event Raised when the Async Postback is completed.
        }
    });
    

    put this and tel me the result 🙂 you know that the same article is posted in this link with the same code :
    http://www.aspsnippets.com/

    if you do not understand ask for explaining 🙂

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

Sidebar

Related Questions

I'd like to detect requests made by my Silverlight client in ASP.Net MVC. Silverlight
I am creating a diagnostic page for ASP.NET and would like to programatically detect
How do people usually detect the MIME type of an uploaded file using ASP.NET?
In Classic ASP, how do you detect on that the page got control via
I am working on an asp.net (or winforms) app that is supposed to detect
How to detect/track/check postback in javascript(e.g in asp.net Page.isPostBack())? Any suggestion?
Is there a way to detect page refresh without using viewstate in asp.net webforms
I want to develop an ASP.NET application that can detect the user logged on
How can I check/detect if the user is accepting cookies or not? Using ASP.NET
How do you detect when a user logs out using the ASP.Net 4 session

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.