首页 > 代码库 > 不要重复你自己(复用代码)

不要重复你自己(复用代码)

获取信息列表

<%DataTable list1 = get_info_list("aaa", 1, 0, "status=0");
if (list1 != null && list1.Rows.Count > 0)
{
    foreach (DataRow item in list1.Rows)
    {%>
                                      
    <%}                                  
} %>

 获取分类信息

<%Suctan.Model.InfoCategory cate = get_category_model(1); %>
<%=cate.title%>

 

不要重复你自己(复用代码)