InterviewSolution
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") |
|