如何从自定义帮助器方法调用 Ajax.BeginForm?
我可以从自定义帮助器方法中调用 Ajax.BeginFrom 吗?
AjaxHelper 在自定义帮助器方法中不可用,因此我尝试在调用 ViewPage 时将可用的“Ajax”传递给 Helper 方法,但在方法中,BeginForm 在传递的“Ajax”参数上不可用。
Can I call Ajax.BeginFrom from a custom helper method ?
AjaxHelper is not available in a custom helper method, so I tried to pass the "Ajax" available in ViewPage to Helper method while calling it, but then in method, BeginForm is not available on that passed "Ajax" parameter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实例化它:
或者如果您正在 AjaxHelper 上编写扩展方法:
并且如果您想将其他扩展方法纳入范围,请不要忘记正确的用法:
You could instantiate it:
or if you are writing an extension method on AjaxHelper:
And don't forget the proper usings if you want to bring other extension methods into scope: