Playing around with Google’s AJAX APIs
A tool for teaching developers how to use Google’s JavaScript APIs: the AJAX API Playground.
Application Architecture Guide 2.0 (The Book)
App Arch Guide 2.0 – pdf
Part I, Fundamentals
- Chapter 1 – Fundamentals of Application Architecture
- Chapter 2 – .NET Platform Overview
- Chapter 3 – Architecture and Design Guidelines
Part II, Design
- Chapter 4 – Designing Your Architecture
- Chapter 5 – Deployment Patterns
- Chapter 6 – Architectural Styles
- Chapter 7 – Quality Attributes
- Chapter 8 – Communication Guidelines
Part III, Layers
- Chapter 9 – Layers and Tiers
- Chapter 10 – Presentation Layer Guidelines
- Chapter 11 – Business Layer Guidelines
- Chapter 12 – Data Access Layer Guidelines
- Chapter 13 – Service Layer Guidelines
Part IV, Archetypes
- Chapter 14 – Application Archetypes
- Chapter 15 – Web Applications
- Chapter 16 – Rich Internet Applications (RIA)
- Chapter 17 – Rich Client Applications
- Chapter 18 – Services
- Chapter 19 – Mobile Applications
- Chapter 20 – Office Business Applications (OBA)
- Chapter 21 – SharePoint Line-Of-Business (LOB) Applications
patterns & practices: Application Architecture Guide 2.0 (The Book) – Home
Designer / Developer Workflow – Expression Blend & Visual Studio
Richard Griffin’s Blog : Designer Developer Workflow – The art of collaboration using Xaml PART III
An Introduction to Microsoft Robotics Studio.
Via CodeProject: Microsoft Robotics. Free source code and programming help
ASP.NET MVC 1.0 Release Candidate
All Microsoft SDKs in one place!
With over 50 Software Development Kits hosted on various Microsoft web sites, you might have trouble finding the right one for your development needs. Look no further! Now you can go to one page and find links to Microsoft Software Development Kits (SDKs), which provide documentation, code samples, tools, headers, libraries, and other files that developers can use to create software applications and libraries.
IIS URL Rewriting and ASP.NET routing
With the release of URL-rewrite module for IIS 7.0 and the inclusion of ASP.NET routing into the .NET Framework 3.5 SP1, there have been a lot of questions from ASP.NET developers about how these two features relate to each other and when to use each.
Differences between URL Rewriting and ASP.NET Routing
Based on the above explanation you can see that the main conceptual differences between URL rewriting and ASP.NET routing are the following:
- URL rewriting is used to manipulate URL paths before the request is handled by the Web server. The URL-rewriting module does not know anything about what handler will eventually process the rewritten URL. In addition, the actual request handler might not know that the URL has been rewritten.
- ASP.NET routing is used to dispatch a request to a handler based on the requested URL path. As opposed to URL rewriting, the routing component knows about handlers and selects the handler that should generate a response for the requested URL. You can think of ASP.NET routing as an advanced handler-mapping mechanism.
In addition to these conceptual differences, there are the following functional differences between IIS URL rewriting and ASP.NET routing:
- The IIS URL-rewrite module can be used with any type of Web application, which includes ASP.NET, PHP, ASP, and static files. ASP.NET routing can be used only with .NET Framework-based Web applications.
- The IIS URL-rewrite module works the same way regardless of whether integrated or classic IIS pipeline mode is used for the application pool. For ASP.NET routing, it is preferable to use integrated pipeline mode. ASP.NET routing can work in classic mode, but in that case the application URLs must include file extensions or the application must be configured to use "*" handler mapping in IIS.
- The URL-rewrite module can make rewriting decisions based on domain names, HTTP headers, and server variables. By default, ASP.NET routing works only with URL paths and with the HTTP-Method header.
- In addition to rewriting, the URL-rewrite module can perform HTTP redirection, issue custom status codes, and abort requests. ASP.NET routing does not perform those tasks.
- The URL-rewrite module is not extensible in its current version. ASP.NET routing is fully extensible and customizable.
Which Option Should You Use? Read more @ IIS URL Rewriting and ASP.NET routing : Using URL Rewrite Module : Installing and Configuring IIS 7.0 : The Official Microsoft IIS Site
IIS UR Rewriting
ASP.NET Routing
Summer of NHibernate – The single best resource on the planet for learning NHibernate
Also you can try NHibernate in action http://www.manning.com/kuate/
XAML guidelines
XAML Guidelines Draft HTML, PDF, XPS and DOCX.
Contents
Come on, get to the guidelines. Please!. 1
Overall Project Organization. 2
Scenario 1: Naming elements within a scene. 3
Scenario 2: Naming elements within a template. 4
Scenario 1: Organizing logical resources within a scene. 5
Scenario 2: Organizing resources in a resource dictionary. 6
Using static versus dynamic resources (in non-themed projects). 8
Using static versus dynamic resources (in themed or skinned projects). 8
Using implicit styles versus explicit styles. 9
Wrapping control templates in styles. 9
Templating inside Expression Blend. 10
Referencing file-based resources (dictionaries, images, fonts, etc.). 10
Declaring individual XAML elements. 10
