I know, there is a property for textbox control in windows form, called selectall().

I am trying to achieve the same in my web app, for a textbox, once it recieves the focus(), i am trying to select all the text in the textbox.

I know, i can write some jquery for this, but, is there any other easier way to achieve this?

Regards, Ron.

link|improve this question

69% accept rate
2  
Other easy way... are you fooling us – Shekhar_Pro Apr 1 '11 at 17:17
feedback

2 Answers

No, you cannot do this without some client side scripting code. The code is very simple, though. In your Page_Load event, just specify:

myTextBox.Attributes.Add("onfocus", "this.select()")
link|improve this answer
feedback

Try this:

<asp:TextBox ID="Textbox1" runat="server" onFocus="this.select()" />
link|improve this answer
Thanks Guys, i guess, i will go with using jQuery. – Ron Apr 1 '11 at 17:36
this really worked, thnkx Brandon !! – Ron May 12 '11 at 16:04
No problem, don't forget to mark the answer. ;) – BrandonZeider May 13 '11 at 0:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.