simplenews.ascx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:2k
源码类别:

.net编程

开发平台:

Others

  1. namespace qminoa.Webs.usercontrol
  2. {
  3. using System;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.UI.WebControls;
  8. using System.Web.UI.HtmlControls;
  9. using System.Configuration;
  10. using qminoa.DA;
  11. /// <summary>
  12. /// simplenews 在首页面显示最新新闻标题。
  13. /// </summary>
  14. public abstract class simplenews : System.Web.UI.UserControl
  15. {
  16. protected System.Web.UI.WebControls.DataGrid DataGridnews;
  17. protected System.Web.UI.WebControls.LinkButton LinkButton1;
  18. static string path = ConfigurationSettings.AppSettings["ConnectionString"];
  19. // newsdata mydataset = new newsdata(path);
  20. //显示所有的新闻记录
  21.       private void Page_Load(object sender, System.EventArgs e)
  22. {
  23. // if(!this.IsPostBack )
  24. // {
  25. // //每次打开页面时自动更新新闻发布状态
  26. // mydataset.updatedaynews ();
  27. //
  28. // //处理时间的格式为日期型
  29. // DataTable dt = mydataset.GetfiveNewsData().Table;
  30. // if( dt.Columns ["date"] == null)
  31. // dt.Columns .Add ("date");
  32. // foreach( DataRow thisRow in dt.Rows )
  33. // {
  34. // thisRow["date"] = (DateTime.Parse (thisRow["newsfirsttime"].ToString ())).ToShortDateString ();
  35. // }
  36. // DataView ds = dt.DefaultView ;
  37. //
  38. // DataGridnews.DataSource = ds;
  39. // DataGridnews.DataBind ();
  40. // }
  41. }
  42. #region Web Form Designer generated code
  43. override protected void OnInit(EventArgs e)
  44. {
  45. //
  46. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  47. //
  48. InitializeComponent();
  49. base.OnInit(e);
  50. }
  51. /// 设计器支持所需的方法 - 不要使用
  52. /// 代码编辑器修改此方法的内容。
  53. /// </summary>
  54. private void InitializeComponent()
  55. {
  56. this.LinkButton1.Click += new System.EventHandler(this.LinkButton1_Click);
  57. this.Load += new System.EventHandler(this.Page_Load);
  58. }
  59. #endregion
  60. //导航到普通用户浏览页面
  61. private void LinkButton1_Click(object sender, System.EventArgs e)
  62. {
  63. Response.Redirect ("morenewscus.aspx");
  64. }
  65. }
  66. }