How will U encapsulate button trigger event into text_box
event of Pressing Enter key?i.e only after pressing Enter
after the text is typed the button trigger event should
activate?
Answers were Sorted based on User's Feedback
Answer / zaid
hmmm nice question asked isn't it??
the answer for dis is that:
jst set the Accept Button property = the button which u want to encapsulate of the Form in which u are doing this
encapsulation .
!!!!!!!!
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / kanimozhi
In Asp.net,
<form id="form1" runat="server" defaultbutton="button name">;
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / srinu
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server" >
<div>
<asp:Button ID="Button1" runat="server"
Text="Button" onclick="Button1_Click" />
<asp:TextBox ID="TextBox1" runat="server"
ontextchanged="Button1_Click"></asp:TextBox>
<asp:Label ID="Label1" runat="server"
Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
-------------------------
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "change";
}
if please answer is correct or wrong please inform
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / varun sharma
This should possibly do the trick for purpose
protected void Button1_KeyDown(object sender, EventArgs e)
{
if(e.KeyCode == Keys.Enter)
{
Button_Click(null, null);
}
}
protected void Button_Click(object sender, EventArgs e)
{
}
Is This Answer Correct ? | 1 Yes | 0 No |
Your question is not exactly cleat to me !
But then also assuming your ques i am answering this
[ I THINK YOU WANT TO CAPTURE BUTTON CLICK EVENT WITH ENTER KEY ]
protected void Button1_KeyDown(object sender, EventArgs e)
{
if(e.KeyCode == Keys.Enter)
{
///do your stuff
}
}
REPLY YOUR FEEDBACK !!
Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by string objects are immutable?
What is a datacontract?
What is the different types of private assembly and shared assembly?
What are the differences between static, public and void in c#?
Differentiate between copy and default constructor.
What Are The .Net Object
What is void in c#?
what is the difference between finally and dispose methods?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
Does C# supports multi-dimensional arrays?
What is the difference between class and abstract class?
What happens during the process of boxing?