(Steven Smith) Nobody likes to talk about it, but sometimes your web application is going to fail. When it does, you want to make sure your users still get the best possible experience, and ideally that you as the developer get what you need to fix the problem. In this article, you’ll learn how to
Tag: Development
Anatomy of a .NET Assembly – CLR metadata 3
(Simon Cooper) To recap from my previous posts, .NET assemblies are built on top of the PE file format, which is used for all executables and dlls in Windows. The PE file is split up into sections, and the data read by the CLR is all inside the .text section. Inside that section, the CLR data starts
Select Single Radio Button in Gridview in Asp.Net
(Krishna Garad) In this article we will learn how to select only one row of a GridView using RadioButtons whereas normally a RadioButton does not support selection of only one RadioButton within a row.
jqGrid and ASP.NET MVC – Strongly Typed Helper
(Tomasz Peczek) I’ve been using jqGrid a lot over last year. During this time I have created many helper classes for it. Recently I decided to put all those classes together, clean up, rewrite and publish for the community.
Use MvcContrib Grid to Display a Grid of Data in ASP.NET MVC
(Scott Mitchell) The past six articles in this series have looked at how to display a grid of data in an ASP.NET MVC application and how to implement features like sorting, paging, and filtering.
ASP.NET WF4 / WCF and Async Calls
(Ron Jacobs) How should you use WF4 and WCF with ASP.NET?
Understanding Transactions And Database Rollbacks That Involve 3rd Party API Integration
(Ben Nadel) ColdFusion’s CFTransaction tag is pretty awesome – you just wrap up a bunch of database interactions in the CFTransaction tag and any error thrown by any of the interactions automatically rolls-back the entire set of database mutations.
RC of Entity Framework 4.1 (which includes EF Code First)
(Scott Guthrie) Last week the data team shipped the Release Candidate of Entity Framework 4.1. You can learn more about it and download it here.
Anatomy of a .NET Assembly – CLR metadata 2
(Simon Cooper) Before we look any further at the CLR metadata, we need a quick diversion to understand how the metadata is actually stored.
ASP.NET MVC 3 Dependency Injection
(Brian Mains) ASP.NET MVC 3 was released recently with a wide array of new features, one of these being Dependency Injection. The MVC team added support in many areas of the framework, which is where we are going to be focusing on in this article. If you haven’t read my previous series on Dependency
