Which one is used to render Views in Asp.Net MVC 2.0?
-
Page Events
-
Html Helper
-
Both a and b
-
None of the above
B
Correct answer
Explanation
In ASP.NET MVC 2.0, Html Helper methods are the primary mechanism for rendering views. These helper methods generate HTML markup programmatically and are the standard way views are rendered. Page Events are a WebForms concept, not MVC.