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

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.OleDb;
  12. using System.Configuration;
  13. using System.Text;
  14. namespace kuangren
  15. {
  16. /// <summary>
  17. /// user_board 的摘要说明。
  18. /// </summary>
  19. public class user_board : System.Web.UI.Page
  20. {
  21. protected int intRunTime;
  22. protected DateTime dtStartTime = DateTime.Now;
  23. protected System.Data.OleDb.OleDbCommand cmd;
  24. protected System.Data.OleDb.OleDbCommand cmd1;
  25. protected System.Data.OleDb.OleDbCommand cmd2;
  26. protected System.Data.OleDb.OleDbCommand cmd3;
  27. protected System.Data.OleDb.OleDbCommand cmd4;
  28. protected System.Data.OleDb.OleDbCommand cmd5;
  29. protected System.Data.OleDb.OleDbCommand cmd6;
  30. protected System.Data.OleDb.OleDbConnection conn;
  31. protected System.Web.UI.WebControls.Repeater usernews;
  32. protected System.Web.UI.WebControls.Repeater userpower;
  33. public    DataSet dsPending;
  34. public string sql;
  35. public  float upostdel;
  36. public int showarticle;
  37. public string norecord;
  38. public int showpower;
  39. public string nopower;
  40. public string usercookies;
  41. public string messagejudge;
  42. public    DataSet dsuser;
  43. public int countnews;
  44. public int JudgeImage(object o)
  45. {
  46. if ((int)o == 0)
  47. {
  48. return 111;
  49. }
  50. else
  51. {
  52. return 112;
  53. };
  54. }
  55. private void Page_Load(object sender, System.EventArgs e)
  56. {
  57. if (Request.Cookies["jusername"]!=null)
  58. {
  59. usercookies=Request.Cookies["jusername"].Value;
  60. }
  61. else
  62. {
  63. Response.Redirect("logine.aspx");
  64. }
  65. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  66. sql="SELECT *  FROM userinfo WHERE u_User = '" +usercookies+ "'";
  67. dsPending=new DataSet();
  68. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  69. adWord.Fill(dsPending,"userinfo");
  70. Page.DataBind();
  71. //以下为搜索用户最新的的五条短消息
  72. DataSet ds = new DataSet();
  73. OleDbDataAdapter cmd1 = new OleDbDataAdapter("select top 5 * from forum_5 where p_take='"+usercookies+"'order by p_id desc",conn);
  74. OleDbCommand cmd2 = new OleDbCommand("select count(p_id) from forum_5 where p_take='"+usercookies+"'",conn);
  75. conn.Open();
  76. showarticle=(int)cmd2.ExecuteScalar();
  77. //Create and fill the DataSet.
  78. cmd1.Fill(ds,"forum_5");
  79. //Create a second DataAdapter for the Titles table.
  80. //Bind the Authors table to the parent Repeater control, and call DataBind.
  81. usernews.DataSource = ds.Tables["forum_5"];
  82. Page.DataBind();
  83. //Close the connection.
  84. conn.Close();
  85. if (showarticle==0)
  86. {
  87. norecord="您的收件箱中没有任何内容。";
  88. }
  89. //
  90. //以下为判断用户最新发表文章
  91. DataSet dspower = new DataSet();
  92. OleDbDataAdapter cmd3 = new OleDbDataAdapter("select top 5  f3_id, f3_motif, f3_face, f3_sy, f3_name, f3_now from forum_3 where f3_name='"+usercookies+"'order by f3_id desc",conn);
  93. OleDbCommand cmd4 = new OleDbCommand("select count(f3_id) from forum_3  where f3_name='"+usercookies+"'",conn);
  94. conn.Open();
  95. showpower=(int)cmd4.ExecuteScalar();
  96. //Create and fill the DataSet.
  97. cmd3.Fill(dspower,"forum_3");
  98. //Create a second DataAdapter for the Titles table.
  99. //Bind the Authors table to the parent Repeater control, and call DataBind.
  100. userpower.DataSource = dspower.Tables["forum_3"];
  101. Page.DataBind();
  102. //Close the connection.
  103. conn.Close();
  104. if (showpower==0)
  105. {
  106. nopower="未发表任何文章";
  107. }
  108. //判断是否有新的短消息
  109. cmd5=new OleDbCommand("select p_id from forum_5  where p_take='"+usercookies+"'and p_yn=0",conn);
  110.            OleDbCommand cmd6 = new OleDbCommand("select count(p_id) from forum_5 where p_take='"+usercookies+"'and p_yn=0",conn);
  111. dsuser=new DataSet();
  112. cmd5.Connection.Open();
  113. countnews=(int)cmd6.ExecuteScalar();
  114. OleDbDataReader objDataReader ;
  115. objDataReader = cmd5.ExecuteReader();
  116. if (objDataReader.Read() == true) 
  117. {   
  118. messagejudge="<img src=images/newmail.gif border=0> <a href=user_board_message.aspx><font color=red>您的收件箱中有新的短消息<b>( "+countnews+" )</b>封</font></a>";
  119. }
  120. else
  121. {   
  122. messagejudge="<img src=images/newmail.gif border=0> <a href=user_board_message.aspx><font color=#999999>您的收件箱中没有新的短消息</font></a>";
  123. }
  124. cmd5.Connection.Close();
  125. dsuser.Clear();
  126. conn.Close();
  127. }
  128. #region Web 窗体设计器生成的代码
  129. override protected void OnInit(EventArgs e)
  130. {
  131. //
  132. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  133. //
  134. InitializeComponent();
  135. base.OnInit(e);
  136. }
  137. /// <summary>
  138. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  139. /// 此方法的内容。
  140. /// </summary>
  141. private void InitializeComponent()
  142. {    
  143. this.Load += new System.EventHandler(this.Page_Load);
  144. }
  145. #endregion
  146. }
  147. }