企业门户网站微网站,有列表页、内容详细页、在线留言、联系我们等模块,没有完善后台操作管理
using System;using System.Collections.Generic;using System.Web.UI;using System.Web.UI.HtmlControls;using WeiXinBLL;using WeiXinModel;namespace WeiXinWeb{public class Index : Page{private QueryBll _bll = new QueryBll();public IList<string> List = new List<string>();public IList<string> Aboutus = new List<string>();public IList<int> CLId = new List<int>();protected HtmlForm form1;protected void Page_Load(object sender, EventArgs e){List<columnTb> list = this._bll.column_Browse_All();foreach (columnTb current in list){this.List.Add(current.CLName);this.Aboutus.Add(current.CLTemplate);this.CLId.Add(current.CLId);}}}}
评论