问题描述
我想将 ASP.NET AJAX 页面方法功能与用户控件一起使用.有没有办法能够在 UserControl 的代码后面而不是 Page 的代码后面指定我的静态 [WebMethod]?
I would like to utilize the ASP.NET AJAX Page Methods functionality with a user control. Is there a way to be able to specify my static [WebMethod] inside the UserControl's code behind instead of the Page's code behind?
推荐答案
你可能做不到.用户控件不具备页面的所有功能,不能直接调用.相反,您应该创建一个 Web 服务 (asmx) 来处理这种情况.如果您愿意,可以将 Web 服务调用路由到您的用户控件内的静态方法.
You probably can't. The user control doesn't have all the functionality of a page and can't be called directly. You should instead create a webservice (asmx) to handle this scenario. If you wanted, the webservice call could be routed to the static method inside your user control.
这篇关于来自 UserControl 的 ASP.NET AJAX 页面方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!