我如何滚动到webforms texetBox使用c中的特定行#
这个问题在这里已经有了答案:
你有没有尝试过使用scrollTop?
例如
function scrollTextBox()
{
var textBox = document.getElementById("<%= TextBox1.ClientID %>");
textBox.scrollTop = 30;
}
您需要通过使用行号来计算scrollTop值。
链接地址: http://www.djcxy.com/p/23101.html上一篇: how can i scroll to specific line in a webforms TexetBox using c#