I am assigned a task that requires the dynamic creation of many web data entry pages, mainly in the form of a questionnaire.
I am using visual studio 2008, aspnet, C # 3.5 and sqlserver 2005.
Questions are hierarchical and stored in sqlserver with information about the hierarchy and the information by which they belong.
Some questions require answers using the y / n / na switch, and some require an int.
I was thinking about using listview or gridviews (database bound using sqldatasource, which filters questions for the generated questionnaire) for data entry.
A single list or gidview will contain a question and a column of radio buttons. I would need to iterate over it in order to save the data in db.
In another view or in gidview there will be a column associated with the whole column in db. Inline editing will automatically update db.
Is there a tool that does this? Preferably with gui, which can use enduser to enter, edit, and reorder questions and hierarchies?
It is best to use Open Source, but an inexpensive tool is fine.
Any other suggestions are also welcome.
source
share