0

我通过 jquery 调用我的服务器端方法,并尝试从该方法访问文本框数据。这是我的示例代码

    [WebMethod]
    public static PayPalCart CreatePayPalFields()
    {
        Page CurPage = HttpContext.Current.Handler as Page;
        string tt = ((TextBox)CurPage.FindControl("txtBillAddress1")).Text; 
    }

我从静态方法访问控件时遇到错误,错误消息是对象引用未设置为对象的实例。然后我搜索谷歌以找到更好的解决方案,然后我得到了一个扩展方法,它将遍历控件集合并在找到时返回控件。代码就像

public static T BetterFindControl<T>(this Control root, string id) where T : Control
{
    if (root != null)
    {
        if (root.ID == id) return root as T;

        var foundControl = (T)root.FindControl(id);
        if (foundControl != null) return foundControl;

        foreach (Control childControl in root.Controls)
        {
            foundControl = (T)BetterFindControl<T>(childControl, id);
            if (foundControl != null) return foundControl as T;

        }
    }

    return null;
}

我也从静态方法中使用上述例程,例如

    [WebMethod]
    public static PayPalCart CreatePayPalFields()
    {
        Page CurPage = HttpContext.Current.Handler as Page;
        string sData = CurPage.BetterFindControl<TextBox>("txtDeliveryFName").Text; 
    }

但仍然没有运气......仍然从静态方法访问控件时遇到相同的错误,并发现CurPage没有控制权。请建议我该怎么做。告诉我从静态方法访问控制的出路,因为方法必须是静态的原因我通过 jquery 调用该方法............需要帮助。

4

1 回答 1

0

您无法从此 ajax 调用访问该页面,这很简单,因为发生此调用时该页面不存在于任何地方。

您可以做的是通过 ajax 调用发送您喜欢检查的参数,并使用 javascript 获取它们并发送它们。

多说几句关于 call 的作用。

string sData = CurPage.BetterFindControl<TextBox>("txtDeliveryFName").Text;

这是对 .Form 发布数据的最终调用,以读取由 id 为 txtDeliveryFName 的控件发送的内容。在您的 ajax 调用中,没有发布整个页面,另一方面,您可以控制哪些数据将通过 javascript 发布到 webmethod。

于 2012-06-06T12:43:39.323 回答