zhuye.aspx.cs
上传用户:tjxpgg
上传日期:2017-05-14
资源大小:2244k
文件大小:1k
源码类别:

SilverLight

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class zhuye : System.Web.UI.Page
  12. {
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.         if (!IsPostBack)
  16.             Tree();
  17.         BindRepeater1();
  18.         BindDataList();
  19.         bind2();
  20.     }
  21.     public void Tree()
  22.     {
  23.         DataTable dt = DBHelp.Select("select * from Categories");
  24.         foreach (DataRow dr in dt.Rows)
  25.         {
  26.             TreeNode tn = new TreeNode();
  27.             tn.Text = dr["name"].ToString();
  28.             tn.Value = dr["id"].ToString();
  29.             tn.NavigateUrl = "Default.aspx?id=" + tn.Value;
  30.             this.TreeView1.Nodes.Add(tn);
  31.         }
  32.     }
  33.     public void BindRepeater1()
  34.     {
  35.         this.Repeater1.DataSource = DBHelp.Select("select * from books where id='4942'");
  36.         this.Repeater1.DataBind();
  37.     }
  38.     public void BindDataList()
  39.     {
  40.         this.DataList1.DataSource = DBHelp.Select("select top 4 * from books");
  41.         this.DataList1.DataBind();
  42.     }
  43.     public void bind2()
  44.     {
  45.         this.Repeater2.DataSource = DBHelp.Select("select top 1 * from books order by clicks desc");
  46.         this.Repeater2.DataBind();
  47.     }
  48. }