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

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

概述参见英文答案 > Access ASP.NET control from static [WebMethod] (JS ajax call)                                    1个 >             How to get controls in static web method                                    2 参见英文答案 > 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的重复

总结

以上是内存溢出为你收集整理的c# – 如何访问静态Web方法中的页面控件?全部内容,希望文章能够帮你解决c# – 如何访问静态Web方法中的页面控件?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1238554.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存