ProjectUpdata.aspx.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. using System.Configuration;
  5. using System.Text;
  6. using System.Collections;
  7. using System.Web;
  8. using System.Web.Security;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.WebControls.WebParts;
  12. using System.Web.UI.HtmlControls;
  13. using com.etong.BusinessRule.Zwf;
  14. public partial class SysManage_ProjectUpdata : System.Web.UI.Page
  15. {
  16.     protected string Serialid = "";
  17.     protected void Page_Load(object sender, EventArgs e)
  18.     {
  19.         Response.Buffer = true;
  20.         Response.ExpiresAbsolute = System.DateTime.Now;
  21.         Response.Expires = 0;
  22.         Response.CacheControl = "no-cache";
  23.         Serialid = Request.QueryString["Serialid"].Trim();     
  24.         if (!IsPostBack)
  25.         {
  26.             if (Serialid == "" || Serialid==null)
  27.                 return;
  28.             EtongZwf etongzwf = new EtongZwf();
  29.             DataView dv = etongzwf.ProjectSearch(Convert.ToInt16(Serialid));
  30.             this.TB_SerialName.Text = dv[0]["SerialName"].ToString().Trim();
  31.             //this.TB_Decs.Text = dv[0]["UserDecs"].ToString().Trim();
  32.            
  33.         }
  34.         BT_Cancel.Attributes.Add("onclick", "javascript:if(confirm('确定要退出吗?')) {window.close();return;} else {return;}");
  35.     }
  36.     protected void BT_Confirm_Click(object sender, EventArgs e)
  37.     {
  38.         string SerialName = this.TB_SerialName.Text.Trim();
  39.        // string decs = this.TB_Decs.Text.Trim();
  40.         EtongZwf etongzwf = new EtongZwf();
  41.         bool returnvalue = false;
  42.         returnvalue = etongzwf.ProjectUpdata(Convert.ToInt16(Serialid),SerialName);
  43.         if (returnvalue)
  44.             Response.Write("<script>alert('系统提示:修改记录成功!');window.close();</script>");
  45.         else
  46.             Response.Write("<script>alert('系统提示:修改记录不成功!');window.close();</script>");
  47.         this.TB_SerialName.Text = "";
  48.         this.TB_Decs.Text = "";
  49.     }
  50. }