up vote 3 down vote favorite
1
share [g+] share [fb]

We have an environment that is heavily dependent on forms for data entry. We currently hand-code every single webform because users have requirements that aren't readily handled by code generation, namely

  • conditional blocks on the form (i.e., if answer is yes for one question, another question can be enabled or disabled, etc)
  • validation that involves logic checks against existing dynamic data stores
  • dynamic content - i.e., certain fields prepopulated with existing data

Ideally we'd like to maintain a metadata repository and have a forms-designer/utility for analysts to design and publish forms, rather than having a developer code one from scratch.

We'd like to use an off the shelf solution if possible, but haven't been able to find any robust implementations.

If we were to go off and design our own, can someone provide any tips/advice on how to proceed?

link|improve this question

40% accept rate
feedback

4 Answers

Try the ASP.Net dynamic data framework

link|improve this answer
feedback

Have you tried eXpress Application Framework ?

link|improve this answer
feedback

I'm trying to do the same thing, but none of the suggestions already mentioned does what I think you are looking for. I found articles on 3 different ways to go about this: XML/XSLT, programmatically buidling the entire form structure, and using a repeater control and populating it dynamically.

At first glance, the repeater control looks the easiest to work work with, but I haven't tried it yet.

link|improve this answer
feedback

SubSonic has a scaffold facility that is auto-generated from the database.

link|improve this answer
the link you provided is about Subsonic for Windows Phone 7 – onof Mar 4 '11 at 10:58
Yikes - that must have changed since 08. Thanks. – David Robbins Mar 4 '11 at 13:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.