Example #1
0
    protected void BandSx()
    {
        DataSet ds = null;

        ds = SXSet.GetSXList("");
        GridSX.DataSource = ds.Tables[0];
        GridSX.DataBind();
    }
Example #2
0
    protected void BandHWGZ()
    {
        DataSet ds = null;

        ds = HWGZ.GetHWGZList();
        GridSX.DataSource = ds.Tables[0];
        GridSX.DataBind();
    }
Example #3
0
    protected void BandSXReason()
    {
        string sqlstrf = "";

        if (SXSearch.SelectedValue != "")
        {
            sqlstrf = " and SX = '" + SXSearch.SelectedValue + "'";
            DataSet ds = ZLYY.GetZLYY(sqlstrf);
            GridSX.DataSource = ds.Tables[0];
            GridSX.DataBind();
        }
    }