Te be sure to understand I would like to know if with Razor is it possible to include a View in a View? If yes, how?
Share
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.
Typically it’s done with some overload of the
HtmlHelper.RenderPartialextension method, for example:There are also other methods that can be used according to the situation, such as
Partial(render view to a string):There’s also
RenderAction(render view as specified by controller action).