Click here to Skip to main content
15,867,568 members
Articles / Web Development / ASP.NET

Way To Know Which Control Has Raised PostBack

Rate me:
Please Sign up or sign in to vote.
4.83/5 (44 votes)
13 Dec 2010CPOL2 min read 171.6K   544   59   71
This is the short code snippet with understanding to make you know about what is PostBack in ASP.NET and further how you can know about the Control that raised the PostBack by using inbuilt ASP.NET functionality and manually.

Introduction

The main aim of this article is to make you know among the several controls that resides in ASP.NET page, at the time of PostBack how to know which control has actually raised this event.

Background

Technical definition about PostBack: Most ASP.NET Controls are "Server Controls". This means that when an action occurs, the Page, which hosts all its controls inside <FORM... tags, makes a regular old HTTP POST, with itself being the target URL. This is referred to as a "POSTBACK". *

In simple words, we can differentiate PostBack and Redirection in this way.

Postback: It is the scenario in which ASP.NET page redirects to page itself.

Redirect: It is the scenario in which ASP.NET page is called from another page.

You can check whether the page is PostedBack or not with code side using IsPostBack Property which returns Bool.

Using the Code

The agenda of this article is to determine which control inside page has made page to be posted back to itself OR in other words which control has raised PostBack.

For the control which supports AutoPostBack property, ASP.NET Page has a inbuilt function which will determine the event raising control.

There are several controls that support AutoPostBack, among them some are:

  • Dropdown
  • CheckBoxList
  • RadioButtonList
  • TextBox, etc.

These controls calls _doPostback function in JavaScript generated by ASP.NET automatically.

Let's have a look at the _doPostback function.

JavaScript
function __doPostBack(eventTarget, eventArgument) {
            if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
                theForm.__EVENTTARGET.value = eventTarget;
                theForm.__EVENTARGUMENT.value = eventArgument;
                theForm.submit();
            }
        }

Note:

  • This function will not be visible until minimum of one control is raising the AutoPostBack inside page.
  • The _doPostBack event simply stores value in two hidden fields.
    1. eventTarget - Name of the control raised the postback
    2. eventArgument - The argument to be sent to server

Let's have a look at how those two hidden fields are on page.

HTML
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />

Now if you want to get the ID of a raising control from the code side, you can write this simple snippet and find the values stored in hidden field:

C#
if (IsPostBack)
{
    string ControlID = string.Empty;
    if (!String.IsNullOrEmpty(Request.Form["__EVENTTARGET"]))
    {
        ControlID = Request.Form["__EVENTTARGET"];
    }
}

OR alternatively, you can find full control object using:

C#
if (IsPostBack)
{
    string ControlID = string.Empty;
    if (!String.IsNullOrEmpty(Request.Form["__EVENTTARGET"]))
    {
        ControlID = Page.Request.Params["__EVENTTARGET"];
        Control postbackControl = Page.FindControl(ControlID);
    }
}

_doPostBack function only will be called by AutoPostBack property supportive Controls now let's have a look of the other Control which don't support that inbuilt.

Controls that can be listed are:

  • Button
  • ImageButton, etc.

To make a functionality for Non Supportive AutopostBack Property Control, make one Hidden field on the page.

ASP.NET
<asp:HiddenField ID="CustomHiddenField" runat="server" />

Call a custom Js function on the clientclick so that it will be stored in hidden field before page actually redirects to server.

ASP.NET
<asp:Button ID="btn" runat="server" Text="Click me"
  OnClientClick = "SetSource(this.id)" />

function SetSource(SourceID)
    {
        var hidSourceID =
        document.getElementById("<%=CustomHiddenField.ClientID%>");
        hidSourceID.value = SourceID;
    }

Note: Always use "<%=CustomHiddenField.ClientID%>" convention because Hiddenfield ID can be renamed by ASP.NET.

And get a name once page is posted back by server using Codebehind.

C#
if (IsPostBack)
{
    string CtrlID = string.Empty;
    if (!String.IsNullOrEmpty(Request.Form[CustomHiddenField.UniqueID]))
    {
        CtrlID = Request.Form[CustomHiddenField.UniqueID];
    }
}

Now below is a full code snippet for getting raising control among both type of controls.

C#
protected void Page_Load(object sender, EventArgs e)
{
    if (IsPostBack)
    {
        string ControlID = string.Empty;
        if (!String.IsNullOrEmpty(Request.Form["__EVENTTARGET"]))
        {
            ControlID = Request.Form["__EVENTTARGET"];
        }
        else
        {
            //Buttons and ImageButtons
            if (!String.IsNullOrEmpty(Request.Form[CustomHiddenField.UniqueID]))
            {
                ControlID = Request.Form[CustomHiddenField.UniqueID];
            }
        }
    }
} 

History

  • 14th December, 2010 - Truncated code with IsNullOrEmpty
  • 9th December, 2010 - Attached code and some typos corrected WTHO ThatRaja
  • 8th December, 2010 - Article published

Reference

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
He is a Smart IT devloper with Few years of Expeariance But having Great command on ASP.net,C#,SQL Query,SSRS,Crystal Reports

Apart from that He Loves multimedia work too, Master of Adobe photoshop, Illustrator, CSS , HTML and all things.

He is Currently working in Microsoft Dynamics CRM and Having Nice Expearince with CRM. CRM Rocks!!!

Comments and Discussions

 
GeneralMy vote of 5 Pin
prasad0222-Dec-10 4:15
prasad0222-Dec-10 4:15 
GeneralRe: My vote of 5 Pin
Hiren solanki22-Dec-10 18:41
Hiren solanki22-Dec-10 18:41 
GeneralNice One Pin
Brij20-Dec-10 20:07
mentorBrij20-Dec-10 20:07 
GeneralRe: Nice One Pin
Hiren solanki20-Dec-10 20:10
Hiren solanki20-Dec-10 20:10 
GeneralGood Article Pin
ravish shah13-Dec-10 3:38
ravish shah13-Dec-10 3:38 
GeneralRe: Good Article Pin
Hiren solanki13-Dec-10 3:42
Hiren solanki13-Dec-10 3:42 
GeneralOne suggestion Pin
Steve Wellens13-Dec-10 3:37
Steve Wellens13-Dec-10 3:37 
GeneralRe: One suggestion [modified] Pin
Hiren solanki13-Dec-10 3:41
Hiren solanki13-Dec-10 3:41 
GeneralMy vote of 5 Pin
Abhijit Jana13-Dec-10 2:15
professionalAbhijit Jana13-Dec-10 2:15 
GeneralRe: My vote of 5 Pin
Hiren solanki13-Dec-10 2:20
Hiren solanki13-Dec-10 2:20 
GeneralMy vote of 5 Pin
Prosanta Kundu online12-Dec-10 17:14
Prosanta Kundu online12-Dec-10 17:14 
GeneralRe: My vote of 5 Pin
Hiren solanki12-Dec-10 18:56
Hiren solanki12-Dec-10 18:56 
GeneralMy vote of 5 Pin
Viral Upadhyay11-Dec-10 0:03
Viral Upadhyay11-Dec-10 0:03 
GeneralRe: My vote of 5 Pin
Hiren solanki12-Dec-10 18:55
Hiren solanki12-Dec-10 18:55 
GeneralMy vote of 5 Pin
dida9-Dec-10 21:48
dida9-Dec-10 21:48 
GeneralRe: My vote of 5 Pin
Hiren solanki9-Dec-10 21:49
Hiren solanki9-Dec-10 21:49 
GeneralMy vote of 5 Pin
virang9-Dec-10 18:56
virang9-Dec-10 18:56 
GeneralRe: My vote of 5 Pin
Hiren solanki9-Dec-10 18:57
Hiren solanki9-Dec-10 18:57 
GeneralMy vote of 5 Pin
Sandesh M Patil9-Dec-10 4:54
Sandesh M Patil9-Dec-10 4:54 
GeneralRe: My vote of 5 Pin
Hiren solanki9-Dec-10 18:23
Hiren solanki9-Dec-10 18:23 
GeneralA couple of suggestions Pin
Pete Sutcliffe9-Dec-10 4:38
Pete Sutcliffe9-Dec-10 4:38 
GeneralRe: A couple of suggestions. Pin
Hiren solanki9-Dec-10 18:55
Hiren solanki9-Dec-10 18:55 
GeneralMy vote of 5 Pin
marciomacedo9-Dec-10 1:44
marciomacedo9-Dec-10 1:44 
GeneralRe: My vote of 5 Pin
Hiren solanki9-Dec-10 1:50
Hiren solanki9-Dec-10 1:50 
GeneralMy vote of 5 Pin
m@dhu9-Dec-10 0:15
m@dhu9-Dec-10 0:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.