程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> ASP.NET列出數據庫活躍鏈接的方法

ASP.NET列出數據庫活躍鏈接的方法

編輯:關於ASP.NET

             本文實例講述了ASP.NET列出數據庫活躍鏈接的方法。分享給大家供大家參考。具體分析如下:

             這裡列出數據庫的活躍鏈接。主要使用geeric列表和一個貯存器,創建一個泛型列表的鏈接,如果他們是活躍的,那麼他們將顯示在導航了。

    ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 //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>

              希望本文所述對大家的asp.net程序設計有所幫助。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved