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
Pradeep Patel
NA
54
41.4k
I want to trigger a save button when press an Enter key
Dec 19 2013 12:43 AM
I'm having two table and both table containing a save button when i enter text in textboxes and press enter then save button of particular table should be called.
remember save button is in after a cancel button..
I'm uploading my text please help me..
<table>
<tr>
<td>
First Name
</td>
<td>
<asp:TextBox ID="txtboxFirstName" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
Last Name
</td>
<td>
<asp:TextBox ID="txtboxLastName" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
Address
</td>
<td>
<asp:TextBox ID="txtboxAddress1" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="btnReset" runat="server" Text="Cancel" OnClick="btnReset_Click" />
<asp:Button ID="btnSave" runat="server" Text="Save" OnClientClick="javascript:return std()"
OnClick="btnSave_Click" />
</td>
</tr>
</table>
<hr />
<table>
<tr>
<td>
College Id
</td>
<td>
<asp:TextBox ID="txtclgId" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
College Name
</td>
<td>
<asp:TextBox ID="txtclgName" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="Button1" runat="server" Text="Cancel" />
<asp:Button ID="Button2" runat="server" Text="Save" OnClientClick="javascript:return clg()" />
</td>
</tr>
</table>
Thanx A lot in advance
Pradeep Patel 8483094947
Reply
Answers (
2
)
how to send bulk email using msmq concept in asp.net c#?
Crystal Report