作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前有一个类似于下面的数据库结构,我想知道基于问答输入部分的数据库构建动态表单的最佳方法是什么。另外,最安全的方法是什么?
QuestionID | Question | DisplayOrder
--------------------------------------------------------------------------------------
1 | Enter the addresses you have lived at in the last 10 years | 1
2 | How much wood could a woodchuck chuck if a woodchuck could chuck wood | 2
AnswerID | QuestionID | Answer | AnswerValueType | DisplayOrder
-----------------------------------------------------------------------------
1 | 1 | Address | Text | 1
2 | 1 | City | Lookup | 2
3 | 1 | State | Lookup | 3
4 | 2 | Enter your guesstimate | Text | 1
ResponseID| PersonID | QuestionID | AnswerID | AnswerValue
--------------------------------------------------------------
1 | 1 | 1 | 1 | 123 W Fake St
1 | 1 | 1 | 2 | Las Vegas
1 | 1 | 1 | 3 | Nevada
2 | 2 | 1 | 1 | 456 W Fake St
2 | 2 | 1 | 2 | Seattle
2 | 2 | 1 | 3 | Washington
1 | 1 | 2 | 1 | What a dumb question
提前致谢
最佳答案
Scott Mitchell 整理了一个名为“Creating a Dynamic Data-Driven User Interface”的精彩教程,由 4 部分组成,该教程基于数据模型动态构建用户界面。您可能正在寻找大量工作和测试,但这是可以完成的。
您还应该查看 www.asp.net 上的 4 部分视频系列“Building a Quiz Engine”,看看它是否有帮助。你能看到的实现方法越多越好。
关于c# - asp.net 中的动态调查表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3230088/
我是一名优秀的程序员,十分优秀!