将焦点设置在页面加载的 ASP.NET 控件上

发布于 2024-11-05 10:16:15 字数 885 浏览 0 评论 0原文

我想在加载页面时将焦点设置在控件上。 我写了这段代码但不起作用..

protected void setFocus(System.Web.UI.Control ctrl)
    {
        string s = "<SCRIPT language='javascript'>document.getElementById('" + ctrl.ID + "').focus() </SCRIPT>";
        Type csType = this.GetType();
        ClientScript.RegisterStartupScript(csType, "focus", s);
    }

并且 PageLoad 方法中的这一行:

this.setFocus(txtHeightfeet);

请帮忙。

编辑:

这是 HTML:

<input name="ctl00$MainContent$txtHeightfeet" type="text" maxlength="2" id="MainContent_txtHeightfeet" class="textEntry2" style="width:65px;" />

这是 aspx 代码:

<asp:TextBox ID="txtHeightfeet" runat="server" CssClass="textEntry2" MaxLength="2" Width="65"></asp:TextBox>&nbsp;ft&nbsp;

在 cs 文件后面的代码中,我声明它与您提到的相同。

I want to set focus on a control when page is loaded.
I wrote this code but not working..

protected void setFocus(System.Web.UI.Control ctrl)
    {
        string s = "<SCRIPT language='javascript'>document.getElementById('" + ctrl.ID + "').focus() </SCRIPT>";
        Type csType = this.GetType();
        ClientScript.RegisterStartupScript(csType, "focus", s);
    }

and this line in PageLoad method:

this.setFocus(txtHeightfeet);

Please help.

EDIT:

This is HTML:

<input name="ctl00$MainContent$txtHeightfeet" type="text" maxlength="2" id="MainContent_txtHeightfeet" class="textEntry2" style="width:65px;" />

This is aspx code:

<asp:TextBox ID="txtHeightfeet" runat="server" CssClass="textEntry2" MaxLength="2" Width="65"></asp:TextBox> ft 

and in code behind cs file, i declared it the same as you have mentioned.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫林﹌晚霞¤ 2024-11-12 10:16:15

您应该能够调用 Focus()< /a> 控制方法。

不需要 JavaScript。

protected void Page_Load(object sender, EventArgs e)
{
    txtHeightfeet.Focus(); 
}

You should be able to just call the Focus() method of the control.

No need for that Javascript.

protected void Page_Load(object sender, EventArgs e)
{
    txtHeightfeet.Focus(); 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文