Example #1
0
    //增加资产时效
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (Page.IsValid)
        {
            bool      check = true;
            Hashtable ht    = new Hashtable();
            foreach (string item in arr1)
            {
                ht.Add(item, Util.GetControlValue(this.timename.Parent.FindControl(item)));
            }
            if (ht["time0"].ToString().Trim() == "")
            {
                ht.Remove("time0");
            }
            ht["ZCID"] = Request["parentid"];

            /////////////////////////////////////////////////////
            if (check)
            {
                U_ZCTimeBU time1 = new U_ZCTimeBU();
                string     err1  = time1.InsertTimeData(ht);
                time1.Close();
                if (err1 == null)
                {
                    Response.Redirect("ZcDetail6.aspx?id=" + Request["parentid"], true);
                }
                else
                {
                    Util.alert(this.Page, err1);
                }
            }
        }
    }