ASP.NET Forms automation/serialization/binding

Posted by creo on Stack Overflow See other posts from Stack Overflow or by creo
Published on 2010-06-02T12:01:18Z Indexed on 2010/06/02 12:03 UTC
Read the original article Hit count: 226

Filed under:
|
|
|

I need to implement many forms in ASP.NET application (for IRS mostly). There are will be a lot of standard controls for each form (textboxes, dropdowns, checkboxes, radio). And business entity assigned to each.

What's the best solution to automate this process? I need to:

  1. Have layout stored in DB (in XML). Layout must support several columns, tabbed interface
  2. Automatically bind business object values to the form
  3. Automatically read form values and write to business object
  4. Must support automatic validation
  5. Some basic workflows support would be good

I used to work with TFS and saw how they implemented WorkItem templates (.wit files). In general this is all I need. But what framework did they build it on? How can I utilize this solution?

I know about Dynamic Data only: http://www.asp.net/dynamicdata

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET