拼吾爱程序人生.Net编程Visual Studio.NET .NET开发最新参考资料推荐_20080330

1  /  1  页   1 跳转 查看:806

.NET开发最新参考资料推荐_20080330

.NET开发最新参考资料推荐_20080330

Published Friday, March 28, 2008 1:08 AM by ScottGu


Here is the latest in my link-listing series.  Also check out my ASP.NET Tips, Tricks and Tutorials page for links to popular articles I've done myself in the past.

ASP.NET
ASP.NET AJAXASP.NET MVC
  • Kigg - Building a Digg Clone with ASP.NET MVC: Kazi Manzur Rashid published an excellent Digg-clone sample built with ASP.NET MVC last February.  He recently updated the code to work with ASP.NET MVC Preview 2 (full details here).  You can download the latest version of his source code here.
  • Testing with the ASP.NET MVC Framework: Simone Chiaretta has a great article that discusses how to test controllers using ASP.NET MVC Preview 2.  Note: the next ASP.NET MVC preview release will include a number of refactorings that will simplify controller testing considerably (and avoid the need to mock anything for common scenarios).
Visual Studio
  • VS 2008 Web Deployment Hot-Fix Roll-Up Now Available for non-English Languages: Last month we shipped a hot-fix release that fixes a number of bugs, adds a few features, and improves performance for web development scenarios in VS 2008 and Visual Web Developer 2008 Express.  Last month's release only worked with the English-language VS 2008 products.  Yesterday we shipped an update that now works for all VS 2008 languages except Portuguese and Russian (which are still to come in the future).
  • Hotfix Available for VB Performance Issue in VS 2008: The Visual Basic team recently released a hotfix as well that addresses a performance issue with large files that contain XML documentation.  Read this post to learn more about how to download it if you are running into this issue.
Silverlight
  • Using Silverlight 2's DataGrid with WCF + LINQ to SQL: This 15 minute video blog demonstrates how to build a LINQ to SQL object model on the server and publish it using WCF.  It then demonstrates how to build a Silverlight client that uses the new Silverlight DataGrid control, and which calls the WCF service to retrieve the LINQ to SQL data to populate it with.
  • Simple Editing of Web Service Data in a DataGrid: Mike Taulty has a nice blog post that shows how to create a WCF service on the server, and then use it from a Silverlight 2 client to retrieve data, bind it to a DataGrid, allow users to update rows, add/delete rows, and then save it back to the server using Silverlight 2 Beta1.
  • Sorting with Silverlight 2's DataGrid Control: The DataGrid control in Silverlight 2 Beta1 doesn't yet have built-in column sorting support (it is coming in Beta2).  That hasn't stopped Matt Berseth though!  In this post he shows how to implement sorting using a custom header column approach.  Also check out Matt's post here, which provides a DataGrid test page that shows off a number of the current DataGrid features.
  • Open Source Silverlight Charts with VisiFire: Silverlight doesn't yet have built-in charting controls.  The good news is that the folks at Webyog just released a really cool set of open source Silverlight charting controls (complete with animation support) that enable you to easily build great looking charts.  Their model makes it super easy to use the chart components within existing HTML or AJAX applications.
.NET
  • FormatWith and DateTime Extension Methods: James Newton-King and Fredrik Kalseth have some nice posts and samples that demonstrate how to use the new extension method feature in the VB and C# languages in VS 2008 to create some useful convenience libraries.
Hope this helps,
Scott

 感谢原创者的辛勤劳动,希望对您有所帮助,转载请注明原出处。
 您可能对 [Visual Studio.NET] 的这些文章也感兴趣:

VS 2008性能补丁以及VBScript的意外消息
MS Claims to Hold the ETL Record at 1 TB in 30 Minutes
使用Closures改善API的设计与使用
NUnit 2.5 Alpha released
Entity Framework之Entity SQL(二) 基本查询
微软Server 2008/VS 2008四月底中文版上市
关于 .NET2.0 ThreadPool 的几个测试
深入理解.NET内存回收机制
在你的.NET应用程序里宿主IronScheme
使用NLog实现一个简单的日志记录(包含源代码)
 

回复: .NET开发最新参考资料推荐_20080330

译/joycode.com

这是我的链接系列的最新篇。也请参阅我的ASP.NET 技巧,诀窍和教程网页里我以前写的众多很受欢迎的文章的链接。

ASP.NET
ASP.NET AJAXASP.NET MVC
  • Testing with the ASP.NET MVC Framework: Simone Chiaretta有篇精彩的文章,讨论如何使用ASP.NET MVC第二个预览版测试控制器。注: 下一个ASP.NET MVC预览版将包含若干个重构,将极大地简化控制器的测试(以及避免常见场景中mock的必要性)。
Visual Studio
  • VS 2008 Web Deployment Hot-Fix Roll-Up Now Available for non-English Languages: 上个月我们发布了一个热补,修补了若干缺陷,添加了几个特性,改进了VS 2008 和Visual Web Developer 2008 Express版本中web开发场景的性能。上个月的发布只适用于英文的VS 2008产品。昨天我们发布了一个更新版,适用于除了葡萄牙文和俄文之外的所有其他语言的VS 2008版本,葡萄牙文和俄文的版本不久会发布。
  • Hotfix Available for VB Performance Issue in VS 2008: Visual Basic开发团队最近也发布了一个热补,解决了由包含XML文档的大文件造成的性能问题,阅读这个帖子了解如何下载这个热补,如果你正遇上这个问题的话。
Silverlight
  • Using Silverlight 2's DataGrid with WCF + LINQ to SQL: 这个15分钟的录像博客示范了如何在服务器上建造一个LINQ to SQL对象模型,然后用WCF将其发布,然后示范了如何建造一个使用了新的Silverlight DataGrid控件的Silverlight客户端,该客户端调用WCF服务获取LINQ to SQL数据,将其绑定到DataGrid上。
  • Simple Editing of Web Service Data in a DataGrid: Mike Taulty有一篇好贴,展示如何在服务器上建造WCF服务,然后从Silverlight 2客户端使用它来获取数据,绑定到DataGrid,允许用户更新数据行,添加/删除数据行,然后使用 Silverlight 2 Beta1将数据保存到服务器上。
  • Sorting with Silverlight 2's DataGrid Control: Silverlight 2 Beta1中的DataGrid控件还没有内置的列数据排序支持(将在Beta2中提供)。但这并没有阻止Matt Berseth! 在这个贴子里,他展示了如何使用一个定制的header列方法来实现排序。也看一下Matt的这里的贴子,该文提供了一个DataGrid测试页面,展示了目前DataGrid的若干特性。
  • Open Source Silverlight Charts with VisiFire: Silverlight还没有内置的图表控件。好消息是, Webyog公司刚发布了一套非常酷的开源Silverlight图表控件(带有动画支持),允许你轻松地建造好看的图表,他们的模型极大地方便了在现有的HTML或AJAX应用中图表组件的使用。
.NET
  • FormatWith and DateTime Extension Methods: James Newton-King 和 Fredrik Kalseth撰写了一些很棒的贴子和例程,示范如何使用VS 2008中VB和C#语言中的新扩展方法特性来创建一些有用的方便函数库。
希望本文对你有所帮助,
Scott
 
1  /  1  页   1 跳转

快速回复帖子

标题
禁用 URL 识别
禁用表情
禁用 Discuz!NT 代码
使用个人签名
  [完成后可按 Ctrl+Enter 无刷新发布]  

版权所有 拼吾爱程序人生    

Powered by Discuz!NT 2.1.202   Copyright © 2001-2008 Comsenz Inc. 鄂ICP备07500843号
返顶部