where does mvc stores the association between action method name and view page name? or who is responsible for checking if the there is a view page with name same as action method name?
where does mvc stores the association between action method name and view page name?
Share
The ViewEngine takes care of all that for you.
Have a gander at this post about creating your own view engine… it gives you an idea of what’s going on behind the scenes.
HTHs,
Charles