7
Answers

gridview concept

Ask a question
hi my problem is
 my table contain these fields and each row contain one checkbox and this name is pros table

businessname      status
------------       --------
electronic           active
rise                   inactive
cooler                active

if i check where status =inactive those rows will be moved to another table that is non live pros table and those checked rows will be deleted in first table and those rows will be placed in second table


please solve this one using gridviews(web application)

and i write one application but that application will give only inactive items




 protected void Page_Load(object sender, EventArgs e)
    {
        SqlConnection con = new SqlConnection("user id=bhanu;password=bhanu@123;database=EMS;server=server\\mit");
        SqlDataAdapter da = new SqlDataAdapter("select * from pros", con);
        DataSet ds = new DataSet();
        da.Fill(ds, "pros");
        GridView1.DataSource = ds.Tables["pros"];
        GridView1.DataBind();

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        //SqlConnection con1 = new SqlConnection("user id=bhanu;password=bhanu@123;database=EMS;server=server\\mit");
        //SqlDataAdapter da1=new SqlDataAdapter("select * from pros where status='inactive'",con1);
        //DataSet ds1=new DataSet();
        //da1.Fill(ds1,"pros");
        //GridView2.DataSource=ds1.Tables["pros"];
        //GridView2.DataBind();

so please check and give me the code for my requirement............but i am not writing checked ones...please give me that one also







              



Answers (7)