Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is cshtml extension?

991


How does array sort work?

964


What are the drawbacks of extending an interface as opposed to extending a class?

949


Why do we need to call CG.SupressFinalize?

1052


What is the best dependency injection c#?

930


How does inheritance work in c#?

1182


What are cookies in c#?

1011


What is use of a HashTable in .NET?

1204


Why is lazy loading?

916


What is assembly c#?

935


List the difference between interface and abstract class?

912


Why data types are important in c#?

982


What is strongly typed in c#?

963


If I return out of a try/finally in c#, does the code in the finally-clause run?

1029


What is data type c#?

1032