Inline Edit Box .NET (v0.7)
AJAX, ASP.NET, JavaScript, UI By Dave Ward. Updated October 10, 2008Mike’s been extremely busy this month, but found time to update Inline Edit Box .NET for us. Changes since version 0.5 include:
- Added option for single click or double click (new Public Property called ClickMode: enum [SingleClick|DoubleClick])
- Added ClientIDSuffix property to allow for repeater/web control objects.
- Added Mode property. Allows to specify Admin or Display modes.
- Fixed PostBack issues with regards to control properties.
Head over to the Inline Edit Box .NET page for the download link and more information.

It’s important to remember that a partial postback is just that: A postback.
A problem that has always plagued web developers has been providing detailed progress indication for server-side tasks. The stateless nature of the HTTP protocol makes implementing a mechanism for constant, stateful progress information cumbersome. The main problem is that a given group of server side tasks will generally only result in one, aggregate response from the server.
This is a technique that I really like. It’s excellently suited to intranet sites and administrative interfaces, where your users are typically familiar enough with the application to know which text they can click to edit. It’s actually very easy to implement, with a small amount of JavaScript.

