1

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

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文件后面的代码中,我声明它和你提到的一样。

4

1 回答 1

3

您应该能够只调用Focus()控件的方法。

不需要那个Javascript。

protected void Page_Load(object sender, EventArgs e)
{
    txtHeightfeet.Focus(); 
}
于 2011-05-04T10:18:42.997 回答