1. Slide the mouse over the textbox to select all
Front desk:
dsdsds
or
dsdsds
Backend:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
2. Get focus
Background:
textbox1. Focus();
textbox1.Attributes.Add("onfocus","this.select()");
http://www.bkjia.com/PHPjc/320980.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320980.htmlTechArticle1. Slide the mouse over the textbox to select all the foreground: asp:TextBox runat="server" onMouseOver="this.focus ();this.select()"dsdsds/asp:TextBox or asp:TextBox runat="server" onMouseOver="this.focu...