ASP.NET列出数据库活跃链接的方法

这里列出数据库的活跃链接。主要使用geeric列表和一个贮存器,创建一个泛型列表的链接,如果他们是活跃的,那么他们将显示在导航了。

//First in C# where you create the controller action method //to create the method that will populate all content details //add the following code public ActionResult Details(int id) { var repositoryList = _repository.List(); ViewData["List"] = repositoryList; return View(_repository.Get(id)); } <!--now is ASP.net add the following in your navigation panel-> <ul> <% foreach (var item in (List<Service>)ViewData["List"]) {%> <% if ((item.isActive) || (item.id != 0)) { %><li><%=Html.ActionLink(item.Title, "Details", new { id = item.id })%></li><%} %> <%} %> </ul>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjwpff.html