Click here to Skip to main content
15,888,351 members
Articles / Web Development / ASP.NET
Article

Calling Control on Pressing Enter

Rate me:
Please Sign up or sign in to vote.
2.81/5 (7 votes)
11 Jul 2006 18.5K   13   1
Calling Control on Pressing Enter

Introduction

If you had browsed through many search engines(obviously one cant avoid it in course of each day), once you give the search word and press "Enter Key", the page automatically searches and displays the results. Now when it comes to implementation of the same in our development what need to be done?
 
Suppose you have a textbox and when the user enters some text in the textbox and presses enter , the page have to fire the Event for "btnEnter" in the page. What need to be done?
 
Just a line will resolve the issue.
 
On the Page_Load Event of the Page write the following line
           
            Page.RegisterHiddenField("__EVENTTARGET","btnEnter");
 
Replace "btnEnter" with with button name on your screen.
 
Once this is done, on enter in the textbox the event is fired. There are few more round about methods for which we can attach a javascript function to textbox and perform the operation.
 
Hope this little piece of code is useful for all
 
Regards
Umanath

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWouldn't setting DefaultButton be better? Pin
Mike Ellison12-Jul-06 6:14
Mike Ellison12-Jul-06 6:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.