What is UnTyped Typed HTML Helper?

 Posted by Rajnilari2015 on 12/1/2015 | Category: ASP.NET MVC Interview questions | Views: 2475 | Points: 40
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 

Comments or Responses

Login to post response