TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Abraham Olatubosun
NA
471
112.8k
Keypress event on ASP.NET TextBox control
Feb 10 2016 12:09 AM
Hell all,
I am developing application in ASP.NET, the challenges arise when my user enter data's into the asp:TextBoxes as the TextBox loses focus a Summary TextBox sum all the datae before saving.
if their is a wrong entry in some of the asp:TextBoxes, since asp;TextBoxes only allow _TextChanged event therefore any change made on the TextBoxes will not affect the summary TextBox, i tried the following trick:
<asp:Panel ID="Panel3" runat="server" DefaultButton="Button3">
<asp:Button ID="Button3" runat="server" Text="Button" Style="display:none" OnClick="Button3_Click" />
<asp:TextBox ID="TextBox24" runat="server" Width="52px" AutoPostBack="True" OnTextChanged="TextBox24_TextChanged"></asp:TextBox>
</asp:Panel>
this work once sine then it not working again.
can anyone help please.......?
Reply
Answers (
6
)
Problem
How To Create WebSite.