用户控件中的ajax
是否可以在用户控件内使用 ajax 控件(按原样)?
谢谢
Is it possible to use ajax controls (as it is) inside a user control?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在用户控件内使用 ajax 控件(按原样)?
谢谢
Is it possible to use ajax controls (as it is) inside a user control?
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不确定“原样”是什么意思,但答案是肯定的,您可以在用户控件中使用 AJAX。
有关用户控件的常规做法仍然适用 - 使用 ScriptManager 来控制页面上的 javascript 实例、正确使用 ViewState 等。
您的问题相当模糊,因此答案也相当模糊。
Not sure what you mean by "as it is", but the answer is yes, you can use AJAX in user controls.
The normal practices regarding user controls still apply - using the
ScriptManager
in order to control javascript instances on the page, proper usage of ViewState etc.Your question is rather vague, hence the fairly vague answer.
是的,您可以在用户控件中使用 Ajax 控件工具包 中的控件。只需确保承载用户控件的页面具有 ScriptManager 或最好是 ToolScriptManager。
Yes you could use controls from the Ajax Control Toolkit in user controls. Just make sure that the page that hosts the user control has a ScriptManager or preferably a ToolScriptManager.
现在,当您使用动态加载的用户控件(按需)并对它们进行 Ajax 化时,情况会发生变化并且需要特别注意。尽管简单明了,但在运行时动态加载用户控件的 Ajax 可能具有挑战性......希望这能回答您的问题
Now things will change and need special attention when you use Dynamically loaded User Controls ( On Demand ) and Ajaxify them. Ajaxifying Dynamically loaded User controls at run-time though is simple and straightforward could be challenging... Hope this answers ur Q