(Santiago Santos Cortizo) Sometimes it’s useful to graphically show the value of a column in a DataGridView so the user can compare rows easily. This is an example of implementing this on any DataGridView by only calling a shared class method from the DataGridView’s CellPainting event, as I’ve descr
Tag: Development
State Management in ASP.NET
ASP.NET is a powerful development platform for web applications, based on Microsoft .NET Framework. Microsoft .NET Framework is a software framework containing coded libraries that provide solutions to common programming problems. Web pages in ASP.NET are based on the HTTP protocol.
Is There a Future in Server-Side Code?
(Peter Vogel) So, having completed a page with full CRUD functionality and no server-side code in an ASPX code file, do I still need ASPX code files? Or even the ASP.NET controls? The short answer, for me, is yes.
ASP.NET Page Curls using jQuery
(Suprotim Agarwal) Have you seen pages with a curl in the corner, which on a mouse over, curls further to reveal an image or a page element kept under it? They are also called as ‘Dog Ears’ or ‘Page Peels’.
using new TransactionScope() Considered Harmful
(David Browne) Hopefully you are familiar with the greatness of the TransactionScope class in .NET. It provides implicit ambient transaction handling, which can greatly simplify transaction handling in your code.
Null Or Empty Coalescing
(Phil Haack) In my last blog post, I wrote about the proper way to check for empty enumerations and proposed an IsNullOrEmpty method for collections which sparked a lot of discussion.
Extending ASP.NET Output Caching
(Scott Mitchell) One of the most sure-fire ways to improve a web application’s performance is to employ caching. Caching takes some expensive operation and stores its results in a quickly accessible location. Since it’s inception, ASP.NET has offered two flavors of caching:
Securing ASP.Net Web Services with Forms Authentication
(Andrew Freemantle) In this article we show how Forms Authentication can be used to secure ASP.Net Web Services, using the built-in ASP.Net Membership Provider classes which utilize SQL Server to store usernames and passwords.
Silverlight RIA Service using ADO.NET Entity Data Model: Part II
(Raj Kumar) This article demonstrates how to use RIA services with ADO.NET Entity Data Model and how to use page navigation in Silverlight.
Continuous scrolling pattern using JavaScript and ASP.NET
(Janko Jovanovic) Continuous scrolling is very interesting pattern. If I would have to describe it in short I would say that new items are being loaded while you scroll down the content. If this sounds odd to you, don’t worry. I thought it is absolutely crazy when I first read about it. But I realiz
