InterviewSolution
Saved Bookmarks
| 1. |
Why To Use Html.partial In Mvc? |
|
Answer» This METHOD is used to RENDER the specified partial view as an HTML STRING. This method does not DEPEND on any action methods. We can use this LIKE below: @Html.Partial("TestPartialView") This method is used to render the specified partial view as an HTML string. This method does not depend on any action methods. We can use this like below: @Html.Partial("TestPartialView") |
|