コード例 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DataSet ds = TintucController.WebGetNewsCategoryCache();
         if (ds != null && ds.Tables[0].Rows.Count > 0)
         {
             rptCategory.DataSource = ds.Tables[0];
             rptCategory.DataBind();
         }
     }
 }