How will U encapsulate button trigger event into text_box event of Pressing Enter key?
Answer Posted / sandipan4allinterview
protected void Button1_KeyDown(object sender, EventArgs e)
{
if(e.KeyCode == Keys.Enter)
{
///do your stuff
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
write a c# program add two matrix with input number ?
How big is int16?
How do I create a multilanguage, single-file assembly?
What are the types of comment in c# with examples?
What is use of abstract class in c#?
Is and as in c#?
What are the Features in .net framework 1.1
What is difference between override and new in c#?
What is difference between c sharp and c#?
Is php easier than c#?
What is a Managed Code??
How does return work in c#?
What is var c#?
What is concrete class in c# with example?
List the difference between the virtual method and the abstract method?