protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { NoticeList.DataSource = new DAL.DNotice().GetFirstSix(); NoticeList.DataBind(); ArticleList.DataSource = new DAL.DArticle().GetFirstSeven(); ArticleList.DataBind(); } }