sandipan saha


{ City } kolkata
< Country > india
* Profession * student
User No # 73561
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 1
Users Marked my Answers as Wrong # 0
Questions / { sandipan saha }
Questions Answers Category Views Company eMail




Answers / { sandipan saha }

Question { TCS, 3694 }

HOw to judge a person for a team if you are allowed to ask
only 2 questions to him?


Answer

WHAT TYPE OF QUESTION IS THIS

PLEASE DONT SPAM HERE. KEEP THE SITE CLEAN !!!

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 6708 }

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

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