Do the Formview control draws the UI by itself?

Thread Starter

Shafty

Joined Apr 25, 2023
327
If we enable "Dynamic Data Support" and supply an Entity Datasource to a FormView? Sounds like magic. Isn't it?

P.S:
Struggling to Build a Connection string for an Entity Datasource.
 

MrChips

Joined Oct 2, 2009
34,807
Sounds like something called FormView.
"Dynamic Data Support" and "Entity Datasource" sound like computer gobbledygook to me.
Why don't you look it up in the User's Manual?
 

Thread Starter

Shafty

Joined Apr 25, 2023
327
The Dynamic Data support option in the ASP.NET FormView control allows you to use Dynamic Data to generate the markup for the control. Dynamic Data is a framework that provides a way to create data-driven web applications with little or no code.

When you enable Dynamic Data support for the FormView control, it will use the Dynamic Data framework to generate the markup for the control. This includes the labels, input controls, and buttons for each data field in the record.

Dynamic Data also provides a number of features that can be used to customize the appearance and behavior of the FormView control. For example, you can use Dynamic Data to add validation to the input controls, or to show or hide different data fields depending on the user's permissions.

Overall, the Dynamic Data support option in the ASP.NET FormView control can be a great way to simplify the development of data-driven web applications. It can save you a lot of time and effort, and it can help you to create more user-friendly and secure applications.

Here are some of the benefits of using the Dynamic Data support option in the ASP.NET FormView control:

  • Reduces development time: Dynamic Data can generate the markup for the FormView control automatically, which can save you a lot of time and effort.
  • Increases code reuse: Dynamic Data can use the same markup for multiple FormView controls, which can help you to increase code reuse.
  • Improves security: Dynamic Data can help you to improve the security of your web applications by providing features such as data validation and role-based access control.
  • Provides a more user-friendly experience: Dynamic Data can be used to customize the appearance and behavior of the FormView control, which can provide a more user-friendly experience for your users.
If you are developing a data-driven web application, I would recommend using the Dynamic Data support option in the ASP.NET FormView control. It can save you a lot of time and effort, and it can help you to create more user-friendly and secure applications.

courtesy: bard.google.com
 

ApacheKid

Joined Jan 12, 2015
1,762
The Dynamic Data support option in the ASP.NET FormView control allows you to use Dynamic Data to generate the markup for the control. Dynamic Data is a framework that provides a way to create data-driven web applications with little or no code.

When you enable Dynamic Data support for the FormView control, it will use the Dynamic Data framework to generate the markup for the control. This includes the labels, input controls, and buttons for each data field in the record.

Dynamic Data also provides a number of features that can be used to customize the appearance and behavior of the FormView control. For example, you can use Dynamic Data to add validation to the input controls, or to show or hide different data fields depending on the user's permissions.

Overall, the Dynamic Data support option in the ASP.NET FormView control can be a great way to simplify the development of data-driven web applications. It can save you a lot of time and effort, and it can help you to create more user-friendly and secure applications.

Here are some of the benefits of using the Dynamic Data support option in the ASP.NET FormView control:

  • Reduces development time: Dynamic Data can generate the markup for the FormView control automatically, which can save you a lot of time and effort.
  • Increases code reuse: Dynamic Data can use the same markup for multiple FormView controls, which can help you to increase code reuse.
  • Improves security: Dynamic Data can help you to improve the security of your web applications by providing features such as data validation and role-based access control.
  • Provides a more user-friendly experience: Dynamic Data can be used to customize the appearance and behavior of the FormView control, which can provide a more user-friendly experience for your users.
If you are developing a data-driven web application, I would recommend using the Dynamic Data support option in the ASP.NET FormView control. It can save you a lot of time and effort, and it can help you to create more user-friendly and secure applications.

courtesy: bard.google.com
There are umpteen better websites for that kind of questions, I'd say this is too specific to Microsoft for most people here to be able to really help. I will say though as a MS software developer, FormView is ancient history. If you're forced to use it then so be it, but if not you'd be well advised to look into Blazor, Microsoft have revamped .Net so much the past decade and Blazor is a superb technology with much better UI capabilities than cruddy old Forms and it eliminates the need for Javascript, you can do all code front-end and back-end in C# - very attractive for smaller teams.
 
Top