repeat.aspx.cs
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. namespace kuangren
  9. {
  10. /// <summary>
  11. /// repeat 的摘要说明。
  12. /// </summary>
  13. public class repeat : System.Web.UI.Page
  14. {   protected System.Web.UI.WebControls.Repeater parent;
  15. private void Page_Load(object sender, System.EventArgs e)
  16. {
  17. //Create the connection and DataAdapter for the Authors table.
  18. SqlConnection cnn = new SqlConnection("server=(local);database=pubs;uid=sa;pwd=wang;");
  19. SqlDataAdapter cmd1 = new SqlDataAdapter("select * from authors",cnn);
  20. //Create and fill the DataSet.
  21. DataSet ds = new DataSet();
  22. cmd1.Fill(ds,"authors");
  23. //Create a second DataAdapter for the Titles table.
  24. SqlDataAdapter cmd2 = new SqlDataAdapter("select * from titleauthor",cnn);
  25. cmd2.Fill(ds,"titles");
  26. //Create the relation bewtween the Authors and Titles tables.
  27. ds.Relations.Add("myrelation",
  28. ds.Tables["authors"].Columns["au_id"],
  29. ds.Tables["titles"].Columns["au_id"]);
  30. //Bind the Authors table to the parent Repeater control, and call DataBind.
  31. parent.DataSource = ds.Tables["authors"];
  32. Page.DataBind();
  33. //Close the connection.
  34. cnn.Close();
  35. }
  36. #region Web 窗体设计器生成的代码
  37. override protected void OnInit(EventArgs e)
  38. {
  39. //
  40. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  41. //
  42. InitializeComponent();
  43. base.OnInit(e);
  44. }
  45. /// <summary>
  46. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  47. /// 此方法的内容。
  48. /// </summary>
  49. private void InitializeComponent()
  50. {    
  51. this.Load += new System.EventHandler(this.Page_Load);
  52. }
  53. #endregion
  54. }
  55. }