C# 光标定位使用 T.Select(T.Text.Length, 0);
我试图将光标定位在文本框的末尾......
<asp:TextBox ID="TextBox1" AutoPostBack="true" EnableViewState="true"
runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
然后
TextBox1.Select(TextBox1.Text.Length, 0);
Visual Studio 说:
"Error 5 No overload for method 'Select' takes 2 arguments D:\Doc\t.aspx.cs"
怎么做?
非常感谢。
问候。
吉乌斯。
I'm trying to position the cursor at the end of a textbox with.....
<asp:TextBox ID="TextBox1" AutoPostBack="true" EnableViewState="true"
runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
and then
TextBox1.Select(TextBox1.Text.Length, 0);
but Visual Studio says:
"Error 5 No overload for method 'Select' takes 2 arguments D:\Doc\t.aspx.cs"
How to do it?
Many thanks.
Regards.
Gius.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只能使用 JavaScript 来做到这一点。最简单的方法是在页面加载事件上聚焦文本框,然后将空字符串添加到其值。只需将此代码添加到您的
部分即可:
据我所知,它将达到预期的效果。
实时测试用例。
You can do that only with JavaScript. Most simple way would be to focus the textbox then add empty string to its value, on page load event. Just add this code into your
<head>
section:And it will have the desired effect as far as I can tell.
Live test case.
您可能读过 System.Windows.Controls.TextBox .选择或System.Windows.Forms.TextBoxBase.Select。
遗憾的是 System.Web.UI.WebControls.TextBox< /a> 未实现
Select
方法。You probably read of System.Windows.Controls.TextBox.Select or of System.Windows.Forms.TextBoxBase.Select.
Sadly System.Web.UI.WebControls.TextBox doesn't implement the
Select
method.