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();