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.
|
feedback
|
A Server-Side ApproachIf you want to clear the TextBoxes and DropDownLists on postback, you could recurse through the page's
To use this you'd call
A Client-Side ApproachAn 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:
In a nutshell, it sets the For More InformationI wrote a blog entry on this topic with more information and discussion. See: Resetting Form Field Values in an ASP.NET WebForm. Happy Programming! | |||||||||||||||
feedback
|
|
| |||
feedback
|
document.forms[0].reset()– RPM1984 Dec 22 '10 at 0:03