<% Html.RenderPartial("SharedPartial",Model); %>
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Category>>" %><%@ Import Namespace="MyMVCApplication.Models"%><%@ Import Namespace="Microsoft.Web.Mvc"%><h2>Categories</h2><% foreach (var category in Model) { %> <li> <%= category.Name %> </li> <% } %>
Thank you, Govind
Login to post response