TextBox获得焦点,选中文本

asp.net 中

<asp:TextBox ID="TextBoxUserID" runat="server" style="width:160px" onfocus="javascript:this.select()"></asp:TextBox>

<input type="text" onfocus="this.select()" value="sssssbbbbccc">

c#中

在 Click 事件里调用 SelectAll()



        private void textBox1_Click( object sender, EventArgs e )
        {
            textBox1.SelectAll();
        }
posted @ 2011-05-19 17:19  xfyn  阅读(418)  评论(0编辑  收藏  举报