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?
Answer Posted / 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 |
Post New Answer View All Answers
What is deferred execution in c#?
How do I join one form to another in c#?
what is the purpose of using statement in c#
What is the difference between inheritance and abstract class?
Is it true that all c# types derive from a common base class?
What is the relationship between a process, application domain, and application?
What is the difference between console and windows application?
What is difference between constants and read-only?
What is the function of .IsDescendent()?
Which is better interface or abstract class in c#?
What is primitive types in c#?
the c# keyword .int. Maps to which .net type?
What is parsing?
What are extender provider components? Explain how to use an extender provider in the project.
Is there throws keyword in c#?