protected void btnFind_Click(object sender, EventArgs e)
    {
        condObj = new WEC_CUSTOM_WEB_SET();

        if(txtWEC_CUSTOM_WEB_SET_ID.Value !="" )
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_ID.Value));

        if(txtWEC_CUSTOM_WEB_SET_STAFF_ID.Value !="" )
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.STAFF_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_STAFF_ID.Value));

        if(txtWEC_CUSTOM_WEB_SET_A_ID.Value !="" )
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.A_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_A_ID.Value));

        try
        {
            hidCondition.Value = condObj.ToJson(20);

            listObj = BLLTable<WEC_CUSTOM_WEB_SET>.Factory(conn).SelectByPage(valObj, condObj, aspPager.PageSize, 1, ref recount);
            repList.DataSource = listObj;
            repList.DataBind();
        }
        catch (Exception ex)
        {
             litWarn.Text = ex.Message;
        }
    }
    protected void btnFind_Click(object sender, EventArgs e)
    {
        condObj = new WEC_CUSTOM_WEB_SET();

        if(txtWEC_CUSTOM_WEB_SET_A_ID.Value != "" )
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.A_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_A_ID.Value));

        hidCondition.Value = condObj.ToJson(20);

        BindList(condObj, 1);
    }
    protected void btnFind_Click(object sender, EventArgs e)
    {
        condObj = new WEC_CUSTOM_WEB_SET();

        if (txtWEC_CUSTOM_WEB_SET_A_ID.Value != "")
        {
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.A_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_A_ID.Value));
        }

        hidCondition.Value = condObj.ToJson(20);

        BindList(condObj, 1);
    }
    protected void btnFind_Click(object sender, EventArgs e)
    {
        condObj = new WEC_CUSTOM_WEB_SET();


        if (txtWEC_CUSTOM_WEB_SET_ID.Value != "")
        {
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_ID.Value));
        }


        if (txtWEC_CUSTOM_WEB_SET_STAFF_ID.Value != "")
        {
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.STAFF_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_STAFF_ID.Value));
        }


        if (txtWEC_CUSTOM_WEB_SET_A_ID.Value != "")
        {
            condObj.Like(WEC_CUSTOM_WEB_SET.Attribute.A_ID, Convert.ToInt32(txtWEC_CUSTOM_WEB_SET_A_ID.Value));
        }

        try
        {
            hidCondition.Value = condObj.ToJson(20);

            listObj = BLLTable <WEC_CUSTOM_WEB_SET> .Factory(conn).SelectByPage(valObj, condObj, aspPager.PageSize, 1, ref recount);

            repList.DataSource = listObj;
            repList.DataBind();
        }
        catch (Exception ex)
        {
            litWarn.Text = ex.Message;
        }
    }