程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 利用c#制作簡單的留言板 (4)

利用c#制作簡單的留言板 (4)

編輯:關於C語言
查看留言內容showtopic.ASPx
<%@ Page language="c#" Codebehind="showTopic.cs" AutoEventWireup="false" Inherits="notpage.showTopic" %>
<Html><head>
<meta content="Microsoft Visual Studio 7.0" name=GENERATOR>
<meta content=C# name=CODE_LANGUAGE></head>
<body>
<form method=post runat="server">
<p align=center><font color=red><b>察看留言</b></font></p><br>
<p align=left><font color=blue>留言主題:<asp:label id=n_tdtitle runat="Server" forecolor="Black"></ASP:label>
<br>留言時間:<asp:label id=n_tdAdddate runat="Server" forecolor="Black"></ASP:label><br></font><font color=blue>留言人:
<ASP:label
id=n_tdAuthor runat="server" forecolor="Black"></asp:label><br>留言內容:<ASP:label id=n_tdContent
runat="Server" forecolor="Black"></ASP:label> </font></p></form>
    
  </body></Html>
對應的cs
namespace notpage
{
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;

    /// <summary>
    ///    Summary description for showTopic.
    /// </summary>
    public class showTopic : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.Label n_tdAuthor;
        protected System.Web.UI.WebControls.Label td;
        protected System.Web.UI.WebControls.Label n_tdContent;
        protected System.Web.UI.WebControls.Label n_tdAdddate;
        protected System.Web.UI.WebControls.Label n_tdtitle;
        protected System.Web.UI.WebControls.Label n_ttitle;
    
    public showTopic()
    {
        Page.Init += new System.EventHandler(Page_Init);
        }

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                //
                // Evals true first time browser hits the page
                //
            }
        }

        protected void Page_Init(object sender, EventArgs e)
        {
            //
            // CODEGEN: This call is required by the ASP+ Windows Form Designer.
            //
            int int_ID;
            int_ID = Request.QueryString["ID"].ToInt32();
            notepage np = new notepage();
            notepage objNp = np.GetTopic(int_ID);
            n_tdtitle.Text = objNp.Title.ToString();
            n_tdContent.Text = objNp.Content.ToString();
            n_tdAuthor.Text = objNp.Author.ToString();
            n_tdAdddate.Text = objNp.adddate.ToString();
            InitializeComponent();
        }

        /// <summary>
        ///    Required method for Designer support - do not modify
        ///    the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.Load += new System.EventHandler (this.Page_Load);
        }
    }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved