how we use <asp:TextBox AutoPostBack="true" ID="TextBox1" runat="server">asp:TextBox>
in windows form application.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Apr 4, 2011, 9:56 PM
CrishPosted Apr 4, 2011, 9:55 AM
<asp:TextBox AutoPostBack="true" ID="TextBox1" OnTextChanged="textbox_TextChanged" runat="server">asp:TextBox>
and also create "textbox_TextChanged" method in code file for generating event
Suthish NairPosted Apr 4, 2011, 9:53 AM
Read more before moving ahead..
About the event of TextBox, use event TextChanged.
Right Click on TexBox, select properties, go to Events, will list all events related to control.