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



How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

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

How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

Answer / kanimozhi

In Asp.net,
<form id="form1" runat="server" defaultbutton="button name">;

Is This Answer Correct ?    3 Yes 2 No

How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

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

How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

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

How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

Answer / sandipan

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

How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only aft..

Answer / zaid_king

Test ur skills & answer if u can!

Is This Answer Correct ?    5 Yes 11 No

Post New Answer

More C Sharp Interview Questions

what is the equivalent to regsvr32 and regsvr32 /u a file in .net development?

0 Answers   4Cplus,


What is an assembly in dotnet?

0 Answers  


What is alias in c#?

0 Answers  


What is lock in c#?

0 Answers  


What is better C# or VB.NET?

0 Answers  






What is yield break in c#?

0 Answers  


What is difference between var dynamic and object in c#?

0 Answers  


What are expressions c#?

0 Answers  


How is a strongly-named assembly different from one that isn’t strongly-named?

0 Answers  


What is dto c#?

0 Answers  


What are the different types of constructors?

0 Answers  


1. What is lazy loading? 2. What is delay signing? 3. How to transfer view object to presenter in MVP? 4. How to create a generic class? 5. What is Ajax object? 6. What is explicit interface implementation? 7. I1, I2 interfaces have same methods (say PrintName) explicitly implemented in class C1. Now how to call PrintName method from I1? 8. I have a list of Customers. List the customer with maximum orders using LINQ.

1 Answers   Aptron, Volvo,


Categories