Author: MusaKoch | Posted on: 5/28/2009 6:16:02 AM | Views : 1282

Hi all,
 I have a page with 5 textboxes. I need to know if a particular one has had its data changed.
Initially, i went into the ChangeEvent of that textbox and tried to assign a value to a global variable and then on a page_load event, checked to see if i could see that value; no go. If i put a msg box within that change event, it appears after the page load once i have modified the checkbox, if i dont modify the checkbox, no msg box. Obviosuly assigning a value to a variable if a textbox is changed is pretty silly (even though that didnt even work)
I can use this to capture the text being changed, Server.HtmlEncode(TextBox1.Text) but that doesnt really help me.
Hence why i am here.
 i had a look at the example on MSDN but the modified attribute is not available on that Textbox class.
Private Sub TextBox1_TextChanged(sender As Go to the complete details ...