动态表单、表元数据

发布于 2024-08-13 22:20:24 字数 234 浏览 6 评论 0原文

我正在使用 ASP.Net Web 应用程序,该应用程序允许用户创建“应用程序”。

它们定义字段及其数据类型。基于此,我生成一个查询来创建一个表。

我想使用表中的元数据生成一个输入表单以显示给用户。

  • 这是一个好方法吗?
  • 有没有人做过类似的项目 那可以分享一些经验教训吗?
  • 如何创建和更改 运行时的表?
  • 有人看到任何问题吗 那?

I am working with an ASP.Net web app that allows users to create an "application."

They define fields and their data types. Based on that, I generate a query to create a table.

I would like to use the metadata from the table to generate an input form to display to users.

  • Is this a good approach?
  • Has anybody done a similar project
    that can share some lessons learned?
  • How about creating and altering
    tables at runtime?
  • Does anybody see any problems with
    that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温折酒 2024-08-20 22:20:24

您将需要适应所有用户定义的字段类型(文本、数字查找、下拉列表、复选框、日期等)。

这些必须保存到每个用户每个表单的字段类型数据库

此外,您还必须允许用户定义自己的布局。这意味着您必须保持整个表单布局相同,每个用户每个表单每个控件

有一些可用的应用程序应用了这种逻辑(我认为 SharePoint 具有这种类型的方法)。

我以前做过一次,但它是使用 WinForms,使用 XtraLayoutControl 、DevExpress 布局控件。

这确实允许我保存布局,但没有自动为我创建控件。我仍然必须自己实现这一点。

如果您对数据库表布局、客户端集成或这些查询的性能有任何具体问题,请随时提问

You will need to accomadate for all userdefined field types (text, number lookup, dropdowns, check boxes, dates, etc).

These will have to be save to the database per field type per user per forms.

Further you will have to allow the user to define their own layout. this will mean that you have to same the entire form layout, per user per form per control.

There are some apps available, that applies this logic, (I think SharePoint has this type of approach).

I have done this once before, but it was using WinForms, using XtraLayoutControl , DevExpress Layout Controls.

This did allow me to save the layout, but did not create the controls for me automatically. I still had to implement that my self.

If you have any specific questions, regarding db table layout, client integration, or performance of these queries, Please feel free to ask.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文