当前位置: 代码迷 >> ASP.NET >> asp.net web的textbox光标定位有关问题
  详细解决方案

asp.net web的textbox光标定位有关问题

热度:5263   发布时间:2013-02-26 00:00:00.0
asp.net web的textbox光标定位问题
我想在页面载入时把光标定位到一个web(非html)的textbox文本框的开始位置
请问该怎么做
谢谢

------解决方案--------------------------------------------------------
window.onload=document.getElement( "textboxid ").focus()
------解决方案--------------------------------------------------------
to hengzskyc()

TextBox1.Focus();这是WinForm中的方法

在WEB中需要使用JS,LS说过了

document.getElementById( "TextBox1 ").focus();
  相关解决方案