var sysfunctions= UnisegurancaService.FunctionsRepository.All(); ViewData["NeededID"] = id return View(sysfunctions);
然后在你的视图中渲染局部
<%= Html.RenderPartial("GridFunction",(int)ViewData["NeededID"]) %>
当然要按照要求施放.
随着第二个参数成为部分中的.Model而被推入的任何东西.我建议也强烈输入你的部分内容.