/// <summary>
    /// 绑定Grid
    /// </summary>
    protected void BindGrid()
    {
        LTransportSortBB transportSortBB = new LTransportSortBB();
        DataSet ds = new DataSet();

        try
        {
            string strWhere = this.StrWhere;

            //货位分类编码
            if (this.tbTransportNo.Text.Trim() != "")
            {
                strWhere += " and transportNo like '%" + this.tbTransportNo.Text.Trim().Replace("'", "''") + "%'";
            }

            //货位分类名称
            if (this.tbTransportNm.Text.Trim() != "")
            {
                strWhere += " and transportNm like '%" + this.tbTransportNm.Text.Trim().Replace("'", "''") + "%'";
            }

            ds = transportSortBB.GetVList(strWhere);
            this.grid.DataSource = ds.Tables[0];
            this.grid.DataBind();

            //赋值记录条数、页面总数
            this.Label3.Text = ds.Tables[0].Rows.Count.ToString();
            this.Label2.Text = this.grid.PageCount.ToString();
            this.currPage.Text = (this.grid.PageIndex + 1).ToString();
        }
        finally
        {
            transportSortBB.Dispose();
        }
    }
    /// <summary>
    /// 数据保存
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void btnSave_Click(object sender, EventArgs e)
    {
        string strInfo = "";

        if (!this.ValidateData(out strInfo))
        {
            strInfo = strInfo.Replace("\"", "'").Replace("\n", "");
            this.ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('" + strInfo + "');", true);
            return;
        }

        LTransportSortData model = new LTransportSortData();
        LTransportSortBB transportSortBB = new LTransportSortBB();

        try
        {
            if (this.State == "1")
            {
                this.SetModel(ref model);
                model.isrtDt = DateTime.Now.ToString();
                model.isrtEmpId = this.currentUser.empId;
                this.IdValue = transportSortBB.AddRecord(model);
            }
            else if (this.State == "2")
            {
                model = transportSortBB.GetModel(this.IdValue);
                this.SetModel(ref model);
                model.updtDt = DateTime.Now.ToString();
                model.updtEmpId = this.currentUser.empId;
                transportSortBB.ModifyRecord(model);
            }
        }
        catch (Exception ex)
        {
            this.ClientScript.RegisterStartupScript(this.GetType(), "ShowErr", "ShowErr(\"" + Server.UrlEncode(ex.Message) + "\",3);", true);
            return;
        }
        finally
        {
            transportSortBB.Dispose();
        }

        Response.Redirect("LTransportSortList.aspx?&itemno=" + this.itemNo + "&pTypeNo=main", false);
    }
    /// <summary>
    /// 删除
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void btnDel_Click(object sender, EventArgs e)
    {
        bool retChecked = false;
        LTransportSortBB transportSortBB = new LTransportSortBB();
        try
        {
            //获取选中的数据Id
            foreach (GridViewRow gvrow in this.grid.Rows)
            {
                CheckBox chkId = (CheckBox)gvrow.FindControl("chkId");
                if (chkId.Checked == true)
                {
                    retChecked = true;
                    int id = int.Parse(chkId.ValidationGroup);
                    LTransportSortData transportSortModel = new LTransportSortData();

                    transportSortModel = transportSortBB.GetModel(id);
                    transportSortModel.isDel = true;
                    transportSortModel.updtDt = System.DateTime.Now.ToString();
                    transportSortModel.updtEmpId = this.currentUser.empId;
                    transportSortBB.ModifyRecord(transportSortModel);
                }
            }
        }
        catch (Exception ex)
        {
            this.ClientScript.RegisterStartupScript(this.GetType(), "ShowErr", "ShowErr(\"" + Server.UrlEncode(ex.Message) + "\",3);", true);
            return;
        }
        finally
        {
            transportSortBB.Dispose();
        }

        if (retChecked)
        {
            this.BindGrid();
        }
    }
 /// <summary>
 /// 展示数据
 /// </summary>
 /// <param name="id">记录Id</param>
 private void ShowInfo(int id)
 {
     LTransportSortBB transportSortBB = new LTransportSortBB();
     vLTransportSortData model = new vLTransportSortData();
     try
     {
         model = transportSortBB.GetVModel(id);
         this.tbTransportNo.Text = model.transportNo;
         this.tbTransportNm.Text = model.transportNm;
     }
     finally
     {
         transportSortBB.Dispose();
     }
 }