Ejemplo n.º 1
0
 private void GetUENews()
 {
     base.Response.Write(UENews.GetJSON());
 }
Ejemplo n.º 2
0
 private void BindUeNews()
 {
     System.Collections.Generic.List <UENewsInfo> list = UENews.Get();
     this.rpt_UeNews.DataSource = ((list != null) ? list.Take(6) : new System.Collections.Generic.List <UENewsInfo>());
     this.rpt_UeNews.DataBind();
 }