80 lines
2.6 KiB
Plaintext
80 lines
2.6 KiB
Plaintext
|
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Telesa.Master" AutoEventWireup="true" CodeBehind="article.aspx.cs" Inherits="Mtxfw.shop.Article" %>
|
||
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="MyHead" runat="server">
|
||
|
|
<link href="css/member.css" rel="stylesheet" type="text/css" />
|
||
|
|
|
||
|
|
</asp:Content>
|
||
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MyContent" runat="server">
|
||
|
|
<div class="contentWrapper">
|
||
|
|
<div id="main">
|
||
|
|
<div id="Location"><div class="title">当前位置: <a href="/" class="red">首页</a> > <%=LocationName%><%=MenuName2 %></div></div>
|
||
|
|
<div id="main3" class="f_clear">
|
||
|
|
<%if (ParentID < 8)
|
||
|
|
{ %>
|
||
|
|
<div class="left_help">
|
||
|
|
<!--h3>服务中心<span>SERVER</span></h3-->
|
||
|
|
<ul>
|
||
|
|
|
||
|
|
<% int fi = 0;
|
||
|
|
foreach (KeyValuePair<int, string> kv in Mtxfw.Utility.Common.GetMenuClass())
|
||
|
|
{
|
||
|
|
if (kv.Key != 0 && kv.Key != 5)
|
||
|
|
{
|
||
|
|
%>
|
||
|
|
<li id="linkbox<%=fi%>">
|
||
|
|
<span><%=kv.Value%></span>
|
||
|
|
<div><ul>
|
||
|
|
<% System.Data.DataSet Ds_Gong = daoArt.GetCacheList("top 8", "ParentID=" + kv.Key + " and ParentID<>0 and ParentID<>5 Order By LinkID asc", "D_Gong" + kv.Key);
|
||
|
|
|
||
|
|
foreach (System.Data.DataRow Dr in Ds_Gong.Tables[0].Rows)
|
||
|
|
{
|
||
|
|
|
||
|
|
%>
|
||
|
|
|
||
|
|
<li><a target="_self" href="<%=(Dr["ID"].ToString()=="151"||Dr["ID"].ToString()=="134")?"/shop_guests.aspx":"/article-" + Dr["ID"] + ".html" %>"><span></span><%=Dr["Title"]%></a></li>
|
||
|
|
|
||
|
|
<%}
|
||
|
|
%>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
</li>
|
||
|
|
<%
|
||
|
|
fi += 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
%>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
<div class="right_help">
|
||
|
|
<%}
|
||
|
|
else
|
||
|
|
{ %>
|
||
|
|
<div>
|
||
|
|
<%} %>
|
||
|
|
<div id="right2">
|
||
|
|
<div id="about">
|
||
|
|
<h1><%=MenuName%></h1>
|
||
|
|
<h4<%=strdisplay %>>
|
||
|
|
发布时间: <asp:Literal ID="Lit_Time" runat="server" EnableViewState="false" />
|
||
|
|
</h4>
|
||
|
|
<div class="nr">
|
||
|
|
<asp:Literal ID="Lit_Content" runat="server" EnableViewState="false" />
|
||
|
|
<ul id="nextlist"<%=strdisplay %>>
|
||
|
|
<li>上一篇:<asp:HyperLink ID="Hy_Min" runat="server"></asp:HyperLink></li>
|
||
|
|
<li>下一篇:<asp:HyperLink ID="Hy_Max" runat="server"></asp:HyperLink></li>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="clear"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
|
||
|
|
$("#ap_category").hide();
|
||
|
|
</script>
|
||
|
|
</div>
|
||
|
|
</asp:Content>
|