好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

ASP.NET开发工具整理第一季

ASP.NET开发工具整理第一季

1.Microsoft SQL Server Compact:
http://www.microsoft.com/en-us/download/details.aspx?id=17876
简化的本地数据库,标准连接字符串为"Data Source=MyData.sdf;Persist Security Info=False;"。

2.jQuery.template()函数
在新版本jQuery中的模板函数,快速提高重复代码或DOM的生成。

 //   Convert the markup string into a named template 
$.template( "summaryTemplate", "<li>${Name}</li>"  );

  function   renderList() {
      //   Render the movies data using the named template: "summaryTemplate" 
    $.tmpl( "summaryTemplate", movies ).appendTo( "#moviesList"  );
} 


3.jqPlot客户端图表脚本库
http://www.jqplot.com/images/leftcharts.jpg

4.jquery.simulate
模拟键盘鼠标事件的测试脚本库
https://github.com/eduardolundgren/jquery-simulate

5.QUnit
客户端Javascript脚本测试框架
http://docs.jquery.com/Qunit

6.modernizr
浏览器版本及支持功能测试
http://modernizr.com/

7.Backbone.js
提供客户端脚本的model键值绑定及自定义事件功能
http://backbonejs.org/

8.Knockout.js
实现客户端脚本的MVVM模式
http://knockoutjs.com/

9.SproutCore
一个高效的Web框架
http://sproutcore.com/

10.BBQ plugin
在HTML5中实现浏览历史及导航功能
http://benalman.com/projects/jquery-bbq-plugin/

作者: Leo_wl

    

出处: http://www.cnblogs.com/Leo_wl/

    

本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

版权信息

查看更多关于ASP.NET开发工具整理第一季的详细内容...

  阅读:35次