c# – 如何访问静态Web方法中的页面控件?

前端之家收集整理的这篇文章主要介绍了c# – 如何访问静态Web方法中的页面控件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Access ASP.NET control from static [WebMethod] (JS ajax call)1个
> How to get controls in static web method2个
我使用静态WebMethod方法使用jQuery调用了一个代码隐藏方法.

该Web方法调用是成功的,但是当试图访问文本框控件时,它给出了错误.非静态字段,方法属性需要对象引用.

[WebMethod]    
public static Savedata()
 {
     //code to insert data to DB

     //after inserting data successfully i need to change the text Box text like following.        
      txtStatus.Text="Data Received";   
 }

解决方法

如@Tim Schmelter所述这不回答这个问题,因为你无法从web方法访问页面的控件.

请仔细检查
asp.net access a control from static function

public static void Savedata()
{
    if (HttpContext.Current != null)
    {
        Page page = (Page)HttpContext.Current.Handler;
        TextBox TextBox1 = (TextBox)page.FindControl("TextBox1");

        TextBox TextBox2 = (TextBox)page.FindControl("TextBox2");
    }
}

上述方法用于查找控制值.
[WebMethod]的重点是它们不运行ASP.Net页面生命周期.这样,它们快速且可并行化.
您的控件不存在.

你的问题是How to get controls in static method的重复

原文链接:https://www.f2er.com/csharp/97188.html

猜你在找的C#相关文章