Hi . . . here's an interesting puzzle!
I have a multi line text box:
<asp:TextBox ID="txtData" runat="server" TextMode="MultiLine" />
Now, suppose a user enters the following:
123456
123457
123458
123459
222111
END
As soon as the user types in END, how do I get it to trigger a Submit button (or code module). The submit button sends the data to a database. And this is fine. But I don't want the user to click the submit button, it should just happen as soon as he types the word END!!
Can anyone offer up any suggestions?
I have a multi line text box:
<asp:TextBox ID="txtData" runat="server" TextMode="MultiLine" />
Now, suppose a user enters the following:
123456
123457
123458
123459
222111
END
As soon as the user types in END, how do I get it to trigger a Submit button (or code module). The submit button sends the data to a database. And this is fine. But I don't want the user to click the submit button, it should just happen as soon as he types the word END!!
Can anyone offer up any suggestions?