Answer: UnTyped Typed HTML Helpers are those HTML Helpers that are not bound to any Model data.
E.g. @Html.RadioButton("myRDBtn", "val", true)
This will be render to
<input type="radio" id="myRDBtn" name="myRDBtn" checked="checked" value="val" />
This radio button is not tied to any model and hence become an UnTyped Typed HTML Helper.
Asked In: Many Interviews |
Alert Moderator