ASP. NET Method for listing active database links, asp.net Database
This article describes how ASP. NET lists active database links. Share it with you for your reference. The specific analysis is as follows:
The active links of the database are listed here. We mainly use the geeric list and a bucket to create a link to the generic list. If they are active, they will be displayed in the navigation bar.
// First in C # where you create the controller action method // to create the method that will populate all content details // add the following codepublic 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>
I hope this article will help you design your asp.net program.