计算机毕业设计留言模块介绍:
3. AddLyb(留言信息)
此模块注册用户可以发布新留言,管理员帐户回复留言信息,查看已有的留言信息。如图:
以下是引用片段:
private void Page_Load(object sender, System.EventArgs e) { // 在此处放置用户代码以初始化页面 if(!Page.IsPostBack) { if(Request.QueryString["Flag"]=="Add") { this.TextBox3.Enabled=false; this.LinkButton1.Text="【发布】" ; } else if(Request.QueryString["Flag"]=="Edit") { this.TextBox1.Enabled=false; this.TextBox2.Enabled=false; this.LinkButton1.Text="【回复】" ; } if(Request.QueryString["Flag"]=="See") { this.LinkButton1.Visible=false; this.TextBox1.Enabled=false; this.TextBox2.Enabled=false; this.TextBox3.Enabled=false; } if(Request.QueryString["ID"]!=null) { DataTable tmpda =new DataTable(); tmpda=Sql2000DB.Get_Table("select * from lyb where ztid="+Request.QueryString["ID"]); { this.TextBox1.Text =tmpda.Rows[0]["ztbt"].ToString(); this.TextBox2.Text =tmpda.Rows[0]["ztnr"].ToString(); this.TextBox3.Text=tmpda.Rows[0]["Hfnr"].ToString(); this.Label1.Text="帐号:" + tmpda.Rows[0]["ID"].ToString(); } }
} }
|
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第14页为计算机毕业论文参考文献......