My textbox's .text value never changes, and its textChanged event never fires. Here are the details:
1. It is a System.Web.UI.WebControls.Textbox. It is NOT an html textbox.
2. The web application is written in asp.net 2.0 in vb not c#.
3. The codebehind tag is:
4. The handler is:
5. But that handler never fires.
6. Here are some important property settings:
autopostback is false
causes validation is false
enableviewstate is true
enabled is true
8. You CAN type in the textbox and the letters seem to change.
9. Please help me!
1. It is a System.Web.UI.WebControls.Textbox. It is NOT an html textbox.
2. The web application is written in asp.net 2.0 in vb not c#.
3. The codebehind tag is:
Code:
<asp:TextBox ID="firstNameTextBox" onTextChanged="firstNameTextBox_TextChanged" runat="server" ></asp:TextBox>
Code:
Protected Sub firstNameTextBox_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles firstNameTextBox.TextChanged
Dim x As String = firstNameTextBox.Text
End Sub
6. Here are some important property settings:
autopostback is false
causes validation is false
enableviewstate is true
enabled is true
8. You CAN type in the textbox and the letters seem to change.
9. Please help me!