vote up 0 vote down star

Hi all,

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!

flag

2 Answers

vote up 1 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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