您目前尚未登陆,请选择【登陆】或【注册
首页->行政办公->网上办公系统源码>>BBS/BBS_EditReply.aspx.cs>>代码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:网上办公系统源码


当前文件路径:OfficeOnline/BBS/BBS_EditReply.aspx.cs 文件类型
普通视图
		            
1using System; 2using System.Data; 3using System.Configuration; 4using System.Collections; 5using System.Web; 6using System.Web.Security; 7using System.Web.UI; 8using System.Web.UI.WebControls; 9using System.Web.UI.WebControls.WebParts; 10using System.Web.UI.HtmlControls; 11 12public partial class BBS_BBS_EditReply : System.Web.UI.Page 13{ 14 string strSql; 15 WebService webService = new WebService(); 16 protected void Page_Load(object sender, EventArgs e) 17 { 18 if (Session["UserID"] == null || Session["UserLevel"] == null) 19 { 20 Response.Redirect("~/Error.aspx"); 21 } 22 if (!Page.IsPostBack) 23 { 24 strSql = "SELECT z_BbsMessage.BM_Title, z_Reply.BBS_ID, z_Reply.Reply_ID, z_Reply.Reply_Content, z_Reply.Reply_AddPersonID FROM z_BbsMessage INNER JOIN z_Reply ON z_BbsMessage.BM_ID = z_Reply.BBS_ID WHERE z_Reply.Reply_ID = '" + Request.QueryString["rid"] + "';"; 25 DataTable table = webService.ExcuteSelect(strSql); 26 this.lblTitle.Text = table.Rows[0]["BM_Title"].ToString(); 27 this.tbContent.Text = table.Rows[0]["Reply_Content"].ToString(); 28 if (table.Rows[0]["Reply_AddPersonID"].ToString() != Session["UserID"].ToString()) 29 { 30 Response.Redirect("~/Error.aspx"); 31 } 32 } 33 } 34 protected void btnSubmit_Click(object sender, EventArgs e) 35 { 36 if (this.tbContent.Text == "") 37 { 38 this.lblMsg.Text = "请填写完整信息!"; 39 } 40 else 41 { 42 strSql = "Update z_Reply set Reply_Content = '" + this.tbContent.Text + "',Reply_ModifyDate='" + DateTime.Now + "' where Reply_ID='" + Request.QueryString["rid"] + "';"; 43 webService.ExcuteSql(strSql); 44 Response.Redirect("BBS_Info.aspx?bid="+Request.QueryString["bid"]); 45 } 46 } 47 protected void btnCancel_Click(object sender, EventArgs e) 48 { 49 Response.Redirect("BBS_Info.aspx?bid=" + Request.QueryString["bid"]); 50 } 51} 52
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:网上办公系统源码

- Ajax入门的三个实用小例子

- WebTextPane 在线编辑器

- AspxCn无刷新整合型网站开源..

- 杰邦教学管理系统源码源码(A..

- 51aspxRSS阅读器源码(含详细..

- 网络书店v1.0源码

- PersonalBlog源码

- 星幻短信群发平台Web源码

51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号