up vote 0 down vote favorite
share [g+] share [fb]

I have a webform with around 20 textboxes/drop down list controls and i would like a clean and simple way of checking to see if the form fields have changed or not. Does anyone know of a clean way to do this?

Thanks in advance!

link|improve this question

72% accept rate
feedback

2 Answers

onkeypress / onkeydown / onkeyup methods in javascript. Are able to monitor keystrokes aimed at the inputs.

If there was a keystroke on the input there will probably be a change.

example

link|improve this answer
feedback

The easiest way is to loop through the controls collection and then check the TextChanged property.

Note that controls in the collection may have their own controls, so you'll have to do a recursive check.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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