In ASP.NET MVC one can create strongly typed Views but suppose if a view has already been made, so would it be possible to derive a model from it?
Like create model from view. A possible scenario would be: a designer makes a view (with forms) and then the developer would create a model from that form
Possible? Yes.
You could certainly translate
<input type="text" data-format="int" name="Price" />intopublic int Price { get; set; }Devil is in the details though.