标签归档:ajax

web developer tips (82):Visual Studio 2005web应用项目迁移到Visual Studio 2008

原文地址:How to migrate Visual Studio 2005 Web Application […]


原文地址:How to migrate Visual Studio 2005 Web Application Project to Visual Studio 2008 下面的步骤介绍如何把Visual Studio 2005的Web应用程序项目可以迁移到Visual Studio 2008: 1、备份原项目。 2、打开Visual Studio 2008。 3、单击“文件”菜单,选择“打开项目”,打开要迁移的项目。 4、你将看到如下帮你转换到当前版本的转换向导,单击“下一步” http://www.watch-life.net/visual-studio/migrating-vs-2005-web-application-project-to-vs-2008.html ...... [阅读全文]

web developer tips (62):在vs工具箱添加AJAX控件工具包

原文地址:How to add Ajax Control Toolkit to the toolbox 添加 […]


原文地址:How to add Ajax Control Toolkit to the toolbox 添加 Framework 3.5 SP1 版本 AJAX控件工具包(Ajax Control Toolkit) 下面的步骤在ASP.NET 3.5 中,为Visual Studio 2008 SP1的工具箱添加AJAX控件工具包。 http://www.watch-life.net/visual-studio/add-ajax-control-toolkit-to-the-toolbox.html 1、 下载AJAX控件工具包,下载地址:http://ajaxcontroltoolkit.codeplex.com/Release/ProjectReleas...... [阅读全文]

web developer tips (30):在vs2008中Ajax Extender 控件UI与vs2005中差异

原文地址:Ajax Extender controls UI behaves differently in V […]


原文地址:Ajax Extender controls UI behaves differently in VS 2008 than in VS 2005 在vs2005的设计视图你可以拖拽extender控件到任何位置,在vs2008里,你仅可以在asp 控件在放置一个扩展器(extender)。当你拖动一个扩展器悬停在一个控件上,如果这个控件支持扩展的话,你可以发现光标变成一个加号(+)标记。如果你悬停一个扩展器在一个空白的设计界面或者不支持扩展的控件,光标会变成一个停止标记,表明它不能放置在当前位置。 http://www.watch-life.net/visual-studio/ajax-extender-controls-ui-behaves-differently-in-vs-2008-than-in-v...... [阅读全文]

web developer tips (22):提高页面和服务器控件加载速度

原文地址:How to improve performance of Page and Server Cont […]


原文地址:How to improve performance of Page and Server Control Processing 1、避免不必要的客户端和服务器间的往返,你可以使用ASP.NET Ajax和局部页面呈现(Partial Page Rendering)。 ASP.NET Ajax:ASP.NET Ajax 允许开发者在创建一个asp.netweb应用的时候,更新数据不要重新加载整个页面。 局部页面呈现(Partial Page Rendering):局部页面呈现(Partial-page rendering)依赖 ASP.NET 的服务控件...... [阅读全文]

web developer tips (15):在ASP.NET Ajax里使用跟踪

原文地址: How to use tracing with ASP.NET Ajax 如果你在使用ASP.NE […]


原文地址: How to use tracing with ASP.NET Ajax 如果你在使用ASP.NET Ajax的时候,遇到一个页面问题,想在调试时候跟踪语句,有个比较快速的方法:使用“Sys.Debug.trace”函数。 <script language="javascript" type="text/javascript"> function PositionDiv() { Sys.Debug.trace("Entering PositionDiv Function"); //some other code Sys.Debug.trace("Exiting PositionDiv Function"); } </script> http://www.watch-life.net/visual-studio/use-tracing-with-asp-net-ajax.html 为了看...... [阅读全文]