Saved Bookmarks
| 1. |
Why To Use Html.partial In Asp.net 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") |
|