查看留言內容showtopic.aspx
對應的cs
命名空間notpage
{
使用
系統;
使用 System.Collections;
使用 System.ComponentModel;
使用
System.Data;
使用 System.Drawing;
使用 System.Web;
使用
System.Web.sessionState;
使用
System.Web.UI;
使用 System.Web.UI.WebControls;
使用
System.Web.UI.HtmlControls;
///
///
showTopic 的摘要描述。
///
公共類別 showTopic : System.Web.UI.Page
{
保護 System.Web.UI.WebControls.Label
n_tdAuthor;
受保護 System.Web.UI.WebControls.Label td;
受保護
System.Web.UI.WebControls.Label n_tdContent;
受保護
System.Web.UI.WebControls.Label n_tdAdddate;
受保護
System.Web.UI.WebControls.Label n_tdtitle;
受保護
System.Web.UI.WebControls.Label n_ttitle;
public showTopic()
{
Page.Init += new
System.EventHandler(Page_Init);
}
受保護的無效
Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//
//
瀏覽器第一次造訪頁面時評估為 true
//
}
}
protected void Page_Init(object sender, EventArgs e)
{
//
// CODEGEN:
ASP+ Windows 窗體設計器需要此呼叫。
//
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();
}
///
/// 設計器支援所需的方法 - 不
使用程式碼編輯器修改
///該方法的內容。
///
private void InitializeComponent()
{
this.Load += new
System.EventHandler(this.Page_Load);
}
}
}
以上就是利用c#製作簡單的留言板(4)的內容,更多文章相關請關注PHPcn中文網(www.php.cn)!