asp.net textbox控件有关问题

asp.net textbox控件问题选中textbox文本框全文,代码报错 textbox1.Focus()textbox1.Select()为什么sele

asp.net textbox控件问题
选中textbox文本框全文,代码报错 
textbox1.Focus();
textbox1.Select();为什么select点不出来,求教原因
[解决办法]
asp.net的 textbox没有 windows control的 select()方法

可通过js脚本进行全选


 var textBoxObj = document.getElementById("文本框ID");
    textBoxObj.select();