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

.net编程

开发平台:

C#

  1. namespace kuangren
  2. {
  3. using System;
  4. using System.Collections;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Web;
  9. using System.Web.SessionState;
  10. using System.Web.UI;
  11. using System.Web.UI.WebControls;
  12. using System.Web.UI.HtmlControls;
  13. using System.Data.OleDb;
  14. using System.Configuration;
  15. using System.Text;
  16. /// <summary>
  17. /// jianinclude2 的摘要说明。
  18. /// </summary>
  19. public class jianinclude2 : System.Web.UI.UserControl
  20. {
  21. protected System.Web.UI.WebControls.Repeater parent;
  22. private void Page_Load(object sender, System.EventArgs e)
  23. {
  24. DataSet ds = new DataSet();
  25. OleDbConnection cnn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  26. OleDbDataAdapter cmd1 = new OleDbDataAdapter("select f1_id,f1_caption from forum_1 order by f1_order",cnn);
  27. //Create and fill the DataSet.
  28. cmd1.Fill(ds,"forum_1");
  29. //Create a second DataAdapter for the Titles table.
  30. OleDbDataAdapter cmd2 = new OleDbDataAdapter("select f2_id,f2_caption,f2_sy from forum_2 order by f2_by",cnn);
  31. cmd2.Fill(ds,"forum_2");
  32. //Create the relation bewtween the Authors and Titles tables.
  33. ds.Relations.Add("myrelation",
  34. ds.Tables["forum_1"].Columns["f1_id"],
  35. ds.Tables["forum_2"].Columns["f2_sy"]);
  36. //Bind the Authors table to the parent Repeater control, and call DataBind.
  37. parent.DataSource = ds.Tables["forum_1"];
  38. Page.DataBind();
  39. //Close the connection.
  40. cnn.Close();
  41. }
  42. #region Web 窗体设计器生成的代码
  43. override protected void OnInit(EventArgs e)
  44. {
  45. //
  46. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  47. //
  48. InitializeComponent();
  49. base.OnInit(e);
  50. }
  51. /// <summary>
  52. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  53. /// 此方法的内容。
  54. /// </summary>
  55. private void InitializeComponent()
  56. {    
  57. this.Load += new System.EventHandler(this.Page_Load);
  58. }
  59. #endregion
  60. private void grdPending_SelectedIndexChanged(object sender, System.EventArgs e)
  61. {
  62. }
  63. }
  64. }