Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the meaning of __doPostBack function, and when is it used?

I had problem triggering server side button click events so I found a solution on the net that I should do something like

  <input type="submit" name="button" id="loginButton" value="Submit" 
                            class="button-orange" alt="Register" title="Register" runat = "server" onclick ="this.disabled=true;__doPostBack('loginButton','')"/>

I did it, and it worked, but I would like to know what is going on!

like image 940
mustafabar Avatar asked Mar 21 '11 09:03

mustafabar


People also ask

What is the use of __ doPostBack in JavaScript?

Doing or Raising Postback using __doPostBack() function from Javascript in Asp.Net. Postback is a mechanism where the page contents are posted to the server due to an occurrence of an event in a page control. For example, a server button click or a Selected Index changed event when AutoPostBack value is set to true.

What does postback mean?

In web development, a postback is an HTTP POST to the same page that the form is on. In other words, the contents of the form are POSTed back to the same URL as the form. Postbacks are commonly seen in edit forms, where the user introduces information in a form and hits "save" or "submit", causing a postback.

What is __ Eventargument?

The __EVENTARGUMENT is any relevant event arguments regarding the control performing the postback. For most controls, there are no specialized event arguments, and since event arguments are different for every control, null is passed to represent a default argument should be created during the event sequence.

What is postback in jQuery?

Learning jQuery "PostBack is the name given to the process of submitting an ASP.NET page to the server for processing .". Once there is a postback (on click of button) that particular code should never ever get called again.


3 Answers

Check this article:

Understanding the JavaScript __doPostBack Function

This method is used to submit (post back) a form to the server and allows ASP.NET framework to call appropriate event handlers attached to the control that raised the post back.

You usually (in simple scenarios) don't use the method directly - it is internally used by the controls you drop on the page.

The parameters passed to this function are stored in a hidden field and picked up by ASP.NET framework on the server-side in order to find the control that raised the post back.

like image 98
Jakub Konecki Avatar answered Sep 29 '22 04:09

Jakub Konecki


simply said, it is used mainly by controls with AutoPostBack property

http://www.dotnetspider.com/resources/189-AutoPostBack-What-How-works.aspx

if you want to implement autopostback for your custom control, then you need to implement IPostBackDataHandler

like image 27
Robert Avatar answered Sep 29 '22 05:09

Robert


The solution might be working but it's not a real fix.. better way will be to find why the button events are not triggering and fix the core of the problem.

Now to answer your questions.. PostBack is the term used to describe when the form is being submitted (posted) back to the same page. Simple as that.

Ordinary submit button would have been enough, but part of PostBack is the ability to identify which control triggered it, meaning what button or link was clicked.

To do such a thing ASP.NET is automatically adding hidden fields to the form and when clicking on element that should cause PostBack, JavaScript code is used to update the values of those hidden fields to the proper values indicating what was clicked - the argument you pass.

The name Microsoft chose to give to the JS function doing the above is __doPostBack - it's just a name of a function, ordinary JavaScript function that ASP.NET automatically writes to the browser.

Hope things are bit more clear now.

like image 30
Shadow Wizard Hates Omicron Avatar answered Sep 29 '22 03:09

Shadow Wizard Hates Omicron