I am using master page with content pages. I want to write a genral method to clear textboxes and for dropdownlist set index to 0. Please guide on this.

link|improve this question

60% accept rate
1  
probably easier to do it on the client (if that suits your scenario) - document.forms[0].reset() – RPM1984 Dec 22 '10 at 0:03
@RPM1984: That's good advice, but one thing to keep in mind is that resetting a form returns the input elements to their default values, which may not be an blank value for textboxes and the 0th item for drop-downs. – Scott Mitchell Dec 22 '10 at 0:37
Yes - good point. – RPM1984 Dec 22 '10 at 2:37
feedback

2 Answers

up vote 4 down vote accepted

A Server-Side Approach

If you want to clear the TextBoxes and DropDownLists on postback, you could recurse through the page's Controls collection and for each control see if it's a TextBox or DropDownList. Here's such a function in C#:

void ClearInputs(ControlCollection ctrls)
{
    foreach (Control ctrl in ctrls)
    {
        if (ctrl is TextBox)
            ((TextBox)ctrl).Text = string.Empty;
        else if (ctrl is DropDownList)
            ((DropDownList)ctrl).ClearSelection();

        ClearInputs(ctrl.Controls);
    }
}

To use this you'd call ClearInputs passing in the control collection you want to search. To clear out all TextBoxes and DropDownLists on the page you'd use:

ClearInputs(Page.Controls);

A Client-Side Approach

An alternative tactic would be to use a client-side approach. Namely, use JavaScript to recurse through the DOM and clear/reset the textboxes and drop-downs on this page. The following JavaScript uses the jQuery library to simplify things:

function clearElements() {
    $("input[type=text]").val('');
    $("select").attr('selectedIndex', 0); 
}

In a nutshell, it sets the value of all <input type="text" ... /> elements on the page to an empty string and sets the selectedIndex attribute of all <select> elements on the page to 0. I've created a script on JSFiddle.net to let you try out the script: http://jsfiddle.net/xs6G9/

For More Information

I wrote a blog entry on this topic with more information and discussion. See: Resetting Form Field Values in an ASP.NET WebForm.

Happy Programming!

link|improve this answer
Thanks Scott, I am your fan and it was really nice to see reply from you. I wish I may also be a good and knowledgeable professional like After seening your name I may be in dream :) – haansi Dec 22 '10 at 0:03
Scott one thing further please. I am also filling some textboxes in form with ajax which are not cleared by this funtions. Is this because in viewstate they are already empty ? – haansi Dec 22 '10 at 0:19
1  
@haansi: If you are loading values into the TextBox after the postback then what's happening is that the TextBox is being cleared on postback by ClearInputs, but then it has a value added on the client side. Let me update my answer to include a client-side option, as well. – Scott Mitchell Dec 22 '10 at 0:28
if I called ClearInputs after getting data with Ajax (which will be once) should it not clear the form ? If it is clearing then from where controls are getting values again. Please guide. Thanks – haansi Dec 22 '10 at 0:34
1  
@haansi: Maybe the way to go is with client-side code... see my amended answer. – Scott Mitchell Dec 22 '10 at 0:35
feedback

<input type="reset"> is a simple solution client side.

link|improve this answer
The problem is that reset returns the input fields to the initial state, which might not be an empty textbox and initially selected listitem, especially if there was a postback on the page (like a DropDownList with AutoPostBack enabled). See bit.ly/hS6zm1 for more on this topic... – Scott Mitchell Dec 23 '10 at 3:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.