I've been asked to create a webpage to implement single record data view/edit against a SQL Server 2005 database. A key requirement is that the database be updated every time a control is updated (no "Save" or "Apply" buttons). I was told that the Telerik RadControls For ASP.NET AJAX product was purchased to accomplish this requirement. This is my first use of AJAX and any Telerik products. What I'm looking for is guidance on how best to implement this type of page (advice, samples, demos, tutorials, etc).
My initial impulse would be:
* add unbound rad controls to a RadAjaxPanel
* write "FillForm" code to populate the controls from a stored proc via a DataReader
* execute "FillForm" on every PageLoad (to reflect current state of database)
* set all controls to AutoPostBack
* update the database on each PostBack
Is this a viable plan or should I be using some kind of databinding or grid control? Any help for an AJAX newbie is appeciated.