string sql = "update quanqiu set count=count+1 where id="+_id; 
        SqlCommand cmd = new SqlCommand(sql,conn); 
        cmd.ExecuteNonQuery(); 
写到按钮事件里string txt = "select * from quanqiu where id="+_id; 
        SqlDataAdapter sda = new SqlDataAdapter(txt, conn); 
        DataSet ds = new DataSet(); 
        sda.Fill(ds,"biao"); 
        Label1.Text = ds.Tables[0].Rows[0]["count"].ToString(); 
写到page_load里加if(!ispostback){}