ASP. NET Method for listing active database links, asp.net Database

Source: Internet
Author: User

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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.