Does anybody know what's the difference between Html.RenderAction and Html.Action?
相关问题
- Carriage Return (ASCII chr 13) is missing from tex
- MVC-Routing,Why i can not ignore defaults,The matc
- Generic Generics in Managed C++
- How to store image outside of the website's ro
- How to Debug/Register a Permanent WMI Event Which
check out this link for a detailed explanation
Html.Action()
– Outputs stringHtml.RenderAction()
– Renders directly to responseResponse stream is the better performance from string output.