Looking for a good ASP.Net front-end developer in New York City

A client I’ve been working with is looking for a front-end ASP.Net developer to work on-site for them in their New York City (midtown) office.
The right candidate should be able to:

develop a complex ASP.Net solution using WebForms;
create web markup (HTML/CSS) from Photoshop mockups;
use ASP.Net Ajax, jQuery, or other client-side solutions, and know when to use [...]

Popularity: 7% [?]

Cleaning up the GridView’s EmptyDataTemplate (damn those tables!)

A project I’ve been working on makes frequent use of the ASP.Net GridView. However, as many people know, the GridView has one glaring issue: It wraps your <EmptyDataTemplate> in an HTML table — something that I don’t want, for two reasons:

My empty data template does not consist of tabular data.
My stylesheet has a default style [...]

Popularity: 8% [?]

Rewriting the ASP.Net CSS Friendly Adapters - does anyone care?

A few days ago, I wrote a lengthy post on the official ASP.Net forums where I discussed some thoughts on a new version of the CSS-friendly ASP.Net control adapters. In the post, I outlined some new approaches to improve testability and configuration.
Since that post (written on the evening of Sept 16), there have been no [...]

Popularity: 10% [?]

Remove anonymous users from ASP.Net Membership tables

If you use the ASP.Net membership tools, have <anonymousIdentification enabled=”true” /> specified in your Web.config, and get lots of anonymous visitors, it’s only a matter of time before your database grows. What’s filling it up is the countless user records for your anonymous users.
If you don’t need to track user and profile information for an [...]

Popularity: 13% [?]

Firefox, LinkButtons, and the Panel.DefaultButton: a (Prototype) fix

Recently I’ve stepped away from the MonoRail world to work on a project that uses ASP.Net WebForms. It didn’t take long before I found an annoying problem. (Actually I found many annoying problems, but I’ll focus on one here.)
The <ASP:Panel> control has a DefaultButton property which, according to the documentation, "Gets or sets the identifier [...]

Popularity: 18% [?]