Cuando utiliza Html.RenderPartial toma el nombre de la vista que desea representar y muestra su contenido en ese lugar.¿Cómo funciona Html Helper, RenderPartial? ¿Cómo puedo implementar un ayudante que pueda traer contenido desde una vista parcial?
Me gustaría implementar algo similar. Me gustaría que tome el nombre de la vista que desea representar, junto con algunas otras variables, y hacer que el contenido dentro de un recipiente ..
Por ejemplo:
public static class WindowHelper
{
public static string Window(this HtmlHelper helper, string name, string viewName)
{
var sb = new StringBuilder();
sb.Append("<div id='" + name + "_Window' class='window'>");
//Add the contents of the partial view to the string builder.
sb.Append("</div>");
return sb.ToString();
}
}
Alguien sabe cómo hacerlo ¿esta?
Agradable. - – womp