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 / 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 |
Post New Answer View All Answers
How big is an int16?
What is int64 in c#?
What is datasource c#?
What is data quality assurance?
What is datagridview in c#?
Which namespace is required to implement trace ?
Is c# and c same?
Can I get the name of a type at runtime?
How to implement delegates in c#.net
What is difference between ienumerable and enumerable in c#?
what are some characteristics of an array?
Define delegation in .net?
What is xor operation?
What is jagged array?
Is c# pass by value?