can anybody explain mvc html helper controls like textboxes , dropdownlist , listbox in mvc using angularjs..but the view should not be strongly typed view .[ @Html.TextboxFor]
@Html.EditorFor(model => model.id, new{ng_model="id"})
the above code is not working in my code.
If i used plain html controls
<input type="text" class="ControlWidth" ng-model="id" />
the above code is working fine.
But i need html helpers ...
Thanks in advanced