首页 > 编程 > .NET > 正文

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

2024-07-10 13:29:10
字体:
来源:转载
供稿:网友

这篇文章主要介绍了ASP.NET列出数据库活跃链接的方法,实例分析了asp.net列出数据库活跃链接的原理与实现技巧,需要的朋友可以参考下

本文实例讲述了ASP.NET列出数据库活跃链接的方法。分享给大家供大家参考。具体分析如下:

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

 

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

希望本文所述对大家的asp.net程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表