So far I can understand HTML.ActionLink and URL.RouteURL but still trying to absorb where to use HTML.Action and it’s various parameters.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Phil Haack wrote a very nice blog post about child actions.
Html.Actionis the same asHtml.Partialexcept that a child controller action is executed that could return anything and this anything will be inserted at the location you called the helper. It allows you to have a completely separate MVC lifecycle for rendering some widgets on your site. It also allows you to cache the partial.