创建支持 AJAX 的网站
我正在尝试遵循 ASP.NET with AJAX Training。在某个时刻,他们部署了一个支持 AJAX 的网站。但对我来说,我找不到这个选项(我使用的是 Visual Studio 2008)。
即使我安装了 Ajax Control Toolkit
它仍然对我不起作用!
我必须做什么才能找到这个?
I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy an AJAX-Enabled Web Site. but for me I can't found this option (I'm using Visual Studio 2008).
Even if I installed the Ajax Control Toolkit
it still not working for me !!
What must I do to find this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
即使您找不到模板,您仍然可以执行培训套件所需的所有操作。
ASP.NET Web 项目和支持 AJAX 的 ASP.NET Web 项目之间的唯一区别在于,它会满足您的一些先决条件:
1) 它添加了对 Ajax 控件工具包的引用。您可以手动执行此操作,方法是在解决方案资源管理器中右键单击您的项目,选择“添加引用”,然后导航到 AjaxControlToolkit DLL(或者在 .NET 选项卡下找到它,如果您已将其添加到 GAC) 。
2) 它将 ScriptManager 控件添加到您的 aspx 页面。它附带 Ajax 控制工具包。使用任何 AJAX Control Toolkit 控件都需要 ScriptManager。将其添加到页面顶部。
如果您处理好这两件事,您应该就可以开始了 - 这与使用支持 Ajax 的网站模板是一样的。
Even if you can't find the template, you can still do everything the training kit needs.
The only difference between an ASP.NET web project and an AJAX-enabled ASP.NET web project is that it takes care of a few pre-requisites for you:
1) It adds a reference to the Ajax control toolkit. You can do this manually by right-clicking on your project in the Solution Explorer, choosing "Add Reference", and navigating to the AjaxControlToolkit DLL (or find it in under the .NET tab, if you've added it to the GAC).
2) It adds a ScriptManager control to your aspx page. It comes with the Ajax Control Toolkit. The ScriptManager is required to use any of the AJAX Control Toolkit controls. Add it to the top of your page.
If you take care of those two things, you should be good to go - it's the same thing as using the Ajax-enabled website template.
我在第二步遇到问题。由于我正在使用更新面板并且母版页中已经有一个 ScriptManager,因此我在 updatepanel 中使用 ScriptManagerProxy。
因此,当我开始添加“ToolkitScriptManager”时,它显示错误“一页中不可能有两个 scriptmanager”实例...
Manish Jain
I have an issue in 2nd step. As i am using update panel and there is already a ScriptManager in master page, so I am using ScriptManagerProxy in updatepanel.
So when i start adding "ToolkitScriptManager" it shows error "Two scriptmanager" instances are not possible in one page...
Manish Jain