P
Phillip N Rounds
I have a webform ( ASP.NET 1.1, CodeBehinde = C#). The user selects an
address item from a dropdown list box. The details of the address then
populate appropriate text boxes. Each textbox has an OnTextChange(), which
serves several (necessary) purposes. One of these is that if there is a
change in the textbox entry, a button 'Save Address' appears.
When the user makes changes to only one textbox, the 'Save Address' button
appears after the postback, and that is usually sufficient for my users to
realize they have to click the button to actually save the changes. My
problems is when the user makes changes to two or more entries. After they
make the first change, and tab to the next field, the 'Save Address' button
appears, as it should. Most users then make the additional changes and
then, without explicitly exiting the last field, click on the 'Save Address'
button. Of course, this click serves only to invoke the OnTextChange()
method of the last textbox, it doesn't actually invoke the OnClick() event
of the 'Save Address' button. The result is that the data doesn't get saved
and my users are confused ( which means they call me, which is my real
problem here).
Is there a common workaround?
Thanks
Phil
address item from a dropdown list box. The details of the address then
populate appropriate text boxes. Each textbox has an OnTextChange(), which
serves several (necessary) purposes. One of these is that if there is a
change in the textbox entry, a button 'Save Address' appears.
When the user makes changes to only one textbox, the 'Save Address' button
appears after the postback, and that is usually sufficient for my users to
realize they have to click the button to actually save the changes. My
problems is when the user makes changes to two or more entries. After they
make the first change, and tab to the next field, the 'Save Address' button
appears, as it should. Most users then make the additional changes and
then, without explicitly exiting the last field, click on the 'Save Address'
button. Of course, this click serves only to invoke the OnTextChange()
method of the last textbox, it doesn't actually invoke the OnClick() event
of the 'Save Address' button. The result is that the data doesn't get saved
and my users are confused ( which means they call me, which is my real
problem here).
Is there a common workaround?
Thanks
Phil