Exemple #1
0
    protected void gridbinding()
    {
        getcon();
        SqlCommand     cmd = new SqlCommand("select Album.AlbumID,Album.AlbumName,tbl_registration.registration_fname+' '+tbl_registration.registration_lname as name from Album inner join tbl_registration on tbl_registration.registration_id=Album.registration_id where Album.status='pending' ", con);
        DataTable      ds  = new DataTable();
        SqlDataAdapter da  = new SqlDataAdapter(cmd);

        da.Fill(ds);
        if (ds.Rows.Count > 0)
        {
            Grd_ApprovePhoto.DataSource = ds;
            Grd_ApprovePhoto.DataBind();
        }
        else if (ds.Rows.Count == 0)
        {
            Grd_ApprovePhoto.Visible = false;
        }
        con.Close();
    }
Exemple #2
0
    protected void Grd_ApprovePhoto_RowDeleting(object sender, System.Web.UI.WebControls.GridViewDeleteEventArgs e)
    {
        getcon();
        string     dk  = Grd_ApprovePhoto.DataKeys[e.RowIndex].Values[0].ToString();
        string     str = "delete from Album where AlbumID='" + dk + "'";
        SqlCommand cmd = new SqlCommand(str, con);

        cmd.ExecuteNonQuery();

        SqlCommand     cmd1 = new SqlCommand("select Album.AlbumID,Album.AlbumName,tbl_registration.registration_fname+' '+tbl_registration.registration_lname as name from Album inner join tbl_registration on tbl_registration.registration_id=Album.registration_id where Album.status='pending' ", con);
        DataTable      ds1  = new DataTable();
        SqlDataAdapter da1  = new SqlDataAdapter(cmd1);

        da1.Fill(ds1);
        if (ds1.Rows.Count > 0)
        {
            Grd_ApprovePhoto.DataSource = ds1;
            Grd_ApprovePhoto.DataBind();
        }
        con.Close();
    }