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

.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_infor 的摘要说明。
  18. /// </summary>
  19. public class user_infor : System.Web.UI.Page
  20. {   protected int intRunTime;
  21. protected DateTime dtStartTime = DateTime.Now;
  22. protected System.Data.OleDb.OleDbCommand cmd;
  23. protected System.Data.OleDb.OleDbCommand cmd1;
  24. protected System.Data.OleDb.OleDbCommand cmd2;
  25. protected System.Data.OleDb.OleDbCommand cmd3;
  26. protected System.Data.OleDb.OleDbCommand cmd4;
  27. protected System.Data.OleDb.OleDbConnection conn;
  28. protected System.Web.UI.WebControls.Repeater userarticle;
  29. protected System.Web.UI.WebControls.Repeater userpower;
  30. public    DataSet dsPending;
  31. public string sql;
  32. public  float upostdel;
  33. public int showarticle;
  34. public string norecord;
  35. public int showpower;
  36. public string nopower;
  37. public string usercookies;
  38. private void Page_Load(object sender, System.EventArgs e)
  39. {
  40. if (Request.Cookies["jusername"]!=null)
  41. {
  42. usercookies=Request.Cookies["jusername"].Value;
  43. }
  44. else
  45. {
  46. Response.Redirect("logine.aspx");
  47. }
  48. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  49. sql="SELECT *  FROM userinfo  inner join usergrade on usergrade.g_id=userinfo.u_grade  WHERE u_User = '" +Request.QueryString["u_user"] + "'";
  50. dsPending=new DataSet();
  51. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  52. adWord.Fill(dsPending,"userinfo");
  53. Page.DataBind();
  54.             //以下为搜索用户最近发表的5篇文章
  55. DataSet ds = new DataSet();
  56. OleDbDataAdapter cmd1 = new OleDbDataAdapter("select top 5  f3_id, f3_motif, f3_face, f3_sy, f3_name, f3_now from forum_3 where f3_name='"+Request.QueryString["u_user"]+"'order by f3_id desc",conn);
  57. OleDbCommand cmd2 = new OleDbCommand("select count(f3_id) from forum_3 where f3_name='"+Request.QueryString["u_user"]+"'",conn);
  58.          conn.Open();
  59. showarticle=(int)cmd2.ExecuteScalar();
  60. //Create and fill the DataSet.
  61. cmd1.Fill(ds,"forum_3");
  62. //Create a second DataAdapter for the Titles table.
  63. //Bind the Authors table to the parent Repeater control, and call DataBind.
  64. userarticle.DataSource = ds.Tables["forum_3"];
  65. Page.DataBind();
  66. //Close the connection.
  67. conn.Close();
  68. if (showarticle==0)
  69. {
  70. norecord="未搜索到任何记录";
  71. }
  72.             //
  73. //以下为判断用户所任职务
  74. DataSet dspower = new DataSet();
  75. OleDbDataAdapter cmd3 = new OleDbDataAdapter("select * from user_f2  where um_name='"+Request.QueryString["u_user"]+"'order by um_id desc",conn);
  76. OleDbCommand cmd4 = new OleDbCommand("select count(um_id) from user_f2  where um_name='"+Request.QueryString["u_user"]+"'",conn);
  77. conn.Open();
  78. showpower=(int)cmd4.ExecuteScalar();
  79. //Create and fill the DataSet.
  80. cmd3.Fill(dspower,"user_f2");
  81. //Create a second DataAdapter for the Titles table.
  82. //Bind the Authors table to the parent Repeater control, and call DataBind.
  83. userpower.DataSource = dspower.Tables["user_f2"];
  84. Page.DataBind();
  85. //Close the connection.
  86. conn.Close();
  87. if (showpower==0)
  88. {
  89. nopower="无职务";
  90. }
  91.             //以下为定义用户帖子删除率
  92. if (Convert.ToInt32(dsPending.Tables[0].Rows[0]["u_postdel"])!=0)
  93. {
  94. upostdel=Convert.ToSingle((Convert.ToSingle(dsPending.Tables[0].Rows[0]["u_postdel"]))/(Convert.ToSingle(dsPending.Tables[0].Rows[0]["u_post"]))*100);
  95. }
  96. else
  97. {
  98. upostdel=0;
  99. }
  100. }
  101. #region Web 窗体设计器生成的代码
  102. override protected void OnInit(EventArgs e)
  103. {
  104. //
  105. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  106. //
  107. InitializeComponent();
  108. base.OnInit(e);
  109. }
  110. /// <summary>
  111. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  112. /// 此方法的内容。
  113. /// </summary>
  114. private void InitializeComponent()
  115. {    
  116. this.Load += new System.EventHandler(this.Page_Load);
  117. }
  118. #endregion
  119. }
  120. }