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

.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. using System.Web.Security;
  15. using System.Security.Cryptography;
  16. namespace kuangren
  17. {
  18. /// <summary>
  19. /// list 的摘要说明。
  20. /// </summary>
  21. public class list : System.Web.UI.Page
  22. {
  23. protected int intRunTime;
  24. protected DateTime dtStartTime = DateTime.Now; 
  25. protected System.Data.OleDb.OleDbConnection conn;
  26. protected System.Data.OleDb.OleDbCommand cmd1;
  27. protected System.Web.UI.WebControls.Repeater parent;
  28. public    DataSet dsPending1;
  29. public string f1name;
  30. public string sql1;
  31. protected string dotrim(string f2_lasttopic,int intlength)
  32. {
  33. if(f2_lasttopic=="")
  34. {
  35. return "null";//可以任意写
  36. }
  37. else
  38. {
  39. if(f2_lasttopic.Length>intlength)
  40. {
  41. return f2_lasttopic.Substring(0,intlength)+"..";
  42. }
  43. else
  44. {
  45. return f2_lasttopic;
  46. }
  47.   
  48. }
  49. }
  50. public string GetPath(object o)
  51. {
  52. if (Convert.IsDBNull(o) || (string)o == "")
  53. return "";
  54. else
  55. return "<img src="+o+">";
  56. }
  57. public string GetPath1(object o)
  58. {
  59. if ((string)o == "1")
  60. return "skin/dvbbs/images/forum_lock.gif";
  61. else
  62. return "skin/dvbbs/images/forum_nonews.gif";
  63. }
  64. protected string getModerator(string strModerators)
  65. {
  66. StringBuilder strResult = new StringBuilder();
  67. if (strModerators != "")
  68. {
  69. string[] strModerator = strModerators.Split('|');
  70. foreach (string strInfos in strModerator)
  71. {
  72. strResult.Append("<a href="user_infor.aspx?u_user=");
  73. strResult.Append(strInfos);
  74. strResult.Append("" target="_blank">");
  75. strResult.Append(strInfos);
  76. strResult.Append("</a> ");
  77. }
  78. }
  79. else
  80. {
  81. strResult.Append("暂无版主");
  82. }
  83. return strResult.ToString();
  84. }
  85. private void Page_Load(object sender, System.EventArgs e)
  86. {
  87. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  88. //搜索对应论坛
  89. DataSet ds = new DataSet();
  90. OleDbDataAdapter cmd1 = new OleDbDataAdapter("select * from forum_2  where f2_sy="+Request.QueryString["f1_id"]+" order by f2_by asc ",conn);
  91. conn.Open();
  92. cmd1.Fill(ds,"forum_2");
  93. //Create a second DataAdapter for the Titles table.
  94. //Bind the Authors table to the parent Repeater control, and call DataBind.
  95. parent.DataSource = ds.Tables["forum_2"];
  96. Page.DataBind();
  97. //搜索论坛大类
  98. sql1="select f1_caption from forum_1  where f1_id="+Request.QueryString["f1_id"]+"";
  99. dsPending1=new DataSet();
  100. OleDbDataAdapter adWord1=new OleDbDataAdapter(sql1,conn);
  101. adWord1.Fill(dsPending1,"forum_1");
  102. Page.DataBind();
  103. f1name=Convert.ToString(dsPending1.Tables[0].Rows[0]["f1_caption"]);
  104. conn.Close();
  105. }
  106. #region Web 窗体设计器生成的代码
  107. override protected void OnInit(EventArgs e)
  108. {
  109. //
  110. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  111. //
  112. InitializeComponent();
  113. base.OnInit(e);
  114. }
  115. /// <summary>
  116. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  117. /// 此方法的内容。
  118. /// </summary>
  119. private void InitializeComponent()
  120. {    
  121. this.Load += new System.EventHandler(this.Page_Load);
  122. }
  123. #endregion
  124. }
  125. }