Out of the box ASP.NET Dynamic Data works with the GridView and DetailsView to provide its scaffolding functionality. Is it technically possible to leverage Dynamic Data to dynamically generate the control templates for the ListView and FormView controls, or any other templated databound control? For example the FormView.EditItemTemplate.
One approach I can think of: Using a PlaceHolder control within the template markup and then programatically creating the child control structure (e.g. instances of DynamicControl) from the Dynamic Data meta data. However, the control tree would need to be rebuilt on each post-back and I think this might cause some issues.