.NET news » ASP.NET 
Slink Framework - Strongly Typed URLs for ASP.NET
Making Script.aculo.us Drag & Drop and ASP.NET play nicely!
How to create an HTML Editor for ASP.NET AJAX
Most blog, forum and Wiki applications use an HTML editor as the primary authoring tool for site content. With this type of control, an online user can create and edit an HTML document. The user is able to modify the text — including its format, fonts and colors — as well as add links and images. Often, the user may also view and/or edit the HTML source.
Microsoft AJAX (ASP.NET AJAX Extensions) introduces a new implementation model for server controls with related script. This article discusses how to create an HTML editor server control specifically for the Microsoft AJAX environment.
Caching Data with a Web Service in Enterprise Library
The Caching Application Block's provider mechanism lets you create a custom provider that stores cached data anywhere you want. It was this that made me wonder if it was possible to cache data within or through a web service, which would allow the provider to cache its data almost anywhere—remotely or locally—without having to write specific code that is directly integrated within Enterprise Library.
The principle is simple enough. Instead of having the backing store provider within the Caching Application Block interact directly with the backing store (the usual approach, as implemented in the Isolated Storage provider and Database provider), the backing store provider simply packages up the data and sends it to a web service..
Creating Web Sites with ASP.NET 2.0
Make your web application run faster
It is easy to develop your own ASP.NET web application. But making it do some useful things for your users while keeping the design simple and elegant is not so easy. If you are lucky, your web application will be used by more than a handful of users, in that case, performance can become important. For some of the web applications I worked on, performance is vital: the company will lose money if users get frustrated with the slow response.
There are many factors that can result in bad performance, the number of users is just one of them. As a developer in a big corporation, you usually don't have a chance to mess with real production servers. However, I think it is very helpful for developers to take a look at the servers that are hosting their applications...
GridView Sort Indicator Component
This article presents a component that is used to add a sort indication image to GridView columns.
The Internet provides a lot of sites that show how you can add some sort of sort indicator to a GridView, but all do this for a single GridView. Our application has quite a lot of GridViews that need this feature and therefore I decided that a component would be the right way to go. A component has the advantage that I have to code the behaviour just once and not for every single GridView over and over again.
The rest of this article shows you how you can use the GridViewSortExtender (that's the name of the component) and how it work on the inside.

