Canonical form design resource in ASP.NET MVC?

Is there a resource on the Internet that describes various form scenarios in ASP.NET MVC and provides examples of solutions in a reasonable, consistent design philosophy?

Examples of such scenarios are:

  • One-to-many forms, such as invoice forms.
  • External table forms, such as "Add a new user" in a form that requires user input
  • Forms requiring dynamic interaction using Ajax or JSON.
  • Popup Formats
  • Forms that require entering multiple data records without postback.

Note that there is significant conceptual and technological overlap between these sample scenarios.

I know there is an extensive patchwork of technologies and examples available that provide partial solutions and pieces of solutions like jQuery Ajax, CSS, etc. But I would like the guidance on the use of these technologies to be more effective and consistent.

I do not consider integrating web forms with an ASP.NET MVC application; I would still like my applications to be pure MVC. At the moment, I also do not consider paid solutions such as Telerik.

But I would like to know if someone has already completed some of these works by combining these technologies into a single whole that follows a sound design philosophy. (open source framework, maybe?)

+3
1

Sharp Architecture ASP.NET MVC, NHibernate (ORM), Castle Windsor (Injection Dependency Injection ) . CRUD. , ASP.NET MVC2 NHibernate Entity Framework 4 ORM.

+1

Source: https://habr.com/ru/post/1741325/


All Articles