1

我已经为我试图在母版页中使用的属性设置了焦点,但我无法这样做。

public partial class Site1 : System.Web.UI.MasterPage
{
    protected void Page_Load(object sender, EventArgs e)
    {
            Page.MaintainScrollPositionOnPostBack = true;
            SetFocus(this);

    }
      public void SetFocus(Site1 site1)
    {
        string[] sCtrl = null;
        string sCtrlId = null;
        Control sCtrlFound = default(Control);
        string sCtrlClientId = null;
        string sScript = null;

        sCtrl = site1.Request.Form.GetValues("__EVENTTARGET");
        if ((sCtrl != null))
        {
            sCtrlId = sCtrl[0];
            sCtrlFound = site1.FindControl(sCtrlId);
            Global.logger.Info("sCtrlId = " + sCtrlId + ", " + sCtrlFound);
            if ((sCtrlFound != null))
            {
                sCtrlClientId = sCtrlFound.ClientID;
                Global.logger.Info("sCtrlClientId = " + sCtrlClientId);

                sScript = "<SCRIPT language='javascript'>document.getElementById('" + sCtrlClientId + "').focus(); if (document.getElementById('" + sCtrlClientId + "').scrollIntoView(false)) {document.getElementById('" + sCtrlClientId + "').scrollIntoView(true)} </SCRIPT>";

                site1.ClientScript.RegisterStartupScript(typeof(string), "controlFocus", sScript);

            }
        }
    }
    }

我在最后一行收到错误:

'System.Web.UI.MasterPage' 不包含'ClientScript' 的定义,并且找不到接受'System.Web.UI.MasterPage' 类型的第一个参数的扩展方法'ClientScript'(您是否缺少使用指令还是汇编参考?)

此代码在正常内容页面上运行良好。该错误仅发生在母版页上。

您对我可以做些什么来使上述代码正常工作有什么建议吗?

4

1 回答 1

1

我不确定这是否有效,但它至少应该编译:

代替:

site1.ClientScript.RegisterStartupScript(typeof(string), "controlFocus", sScript);

和:

site1.Page.ClientScript.RegisterStartupScript(GetType(String), "controlFocus", sScript);
于 2011-06-02T17:50:00.253 回答