明霞山资源网 Design By www.htccd.com
本文实例讲述了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>
希望本文所述对大家的asp.net程序设计有所帮助。
标签:
ASP.NET,数据库,活跃链接
明霞山资源网 Design By www.htccd.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
明霞山资源网 Design By www.htccd.com
暂无评论...