设计动态数据输入表单的建议
我想根据这种情况创建一个动态数据输入表单:
用户可以创建一个表单并向该表单添加任意数量的具有不同接受数据类型的字段(例如一个用于文本的字段,另一个用于货币的字段......)。字段还可以对其进行自定义验证。
在数据库中设计我的表的有效想法是什么?在 C# 中实现这一点的最佳方法是什么?
(我不需要完整的代码,请说出你的想法,如果代码需要,请写伪代码)
谢谢我的朋友
I want to create a dynamic data entry form based on this circumstance:
user can create a form and add to this form any number of fields with different accepting data types(such a field for text and another for currency and...).this fileds also can custom validation on them.
what is your efficiet idea about designing my tables in database any best way to implement this in c#.
(I don't want whole code please just say your ideas and if code needs please write psudo code)
thanks my friend
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的想法是创建一个处理 CRUD 操作的基本表单,并创建一些具有特殊属性的自定义控件,例如字段名、字段长度、标题...在树视图中显示一个表,用户可以将字段从树视图拖放到设计中床单可能是个好主意,
在保存或删除或更新操作中可以读取表单中的所有相关字段,并影响数据库的正常操作
My idea is to create a base form that handles CRUD operation ,and create some custom controls that have special property ,like fieldname ,fieldlength,caption,... showing a table in tree view that user can drag and drop field from treeview to design sheet can be good idea,
in save or delete or update operation you can read all related fields in form ,and affect proper operation on database
如果您使用 ASP.NET 作为前端:
首先,为动态数据输入表单中的每种数据类型构建自定义控件。这些自定义控件需要封装预定义的验证(即必填字段验证、正则表达式验证、数据类型验证等),如果您想涵盖大量数据验证场景,甚至需要支持自定义验证。
然后,您定义了驱动动态数据输入表单的元数据(通常为数据库或 xml)。元数据应定义每个字段的数据类型以及每个字段需要具有哪些验证。
最后,您可以使用元数据和相应的控件动态构建数据输入表单。对于 ASP.NET,这通常在页面的 Init 阶段完成。
对于设计,这里有一些很好的文章:创建动态数据输入用户界面 。
对于自定义控件,请查看XField Suite。我编写这些控件是为了让开发人员轻松构建丰富的动态数据输入表单。
If you're using ASP.NET for the front end:
First, you build custom controls for each data type in your dynamic data entry form. These custom controls need to encapsulate pre-defined validations (i.e., required field validation, regex validation, data type validation, etc.) and even support custom validation if you want to cover lots of data validation scenarios.
Then, you defined the meta data that drives the dynamic data entry form in typically database or xml. The meta data should define the data type of each field and what validations each field needs to have.
Finally, you build the data entry form dynamicly using the meta data and the corresponding controls. For ASP.NET, this is usually done at the Init stage of the page.
For the design, there's good articles here: Creating Dynamic Data Entry User Interfaces.
For the custom controls, please take a look of XField Suite. These are controls I wrote to make building rich dynamic data entry form easy for developers.