在gridview中,我试图显示数据库中的数据,但是它忽略了表格中的第一行,而忽略了其余行..,plz建议我该怎么做。
下面是我的代码。

protected void Page_Load(object sender, EventArgs e)
    {
        DBLibrary obj = new DBLibrary();
        String Parent = (string)Session["parentName"];
        String ss = "Select StudentId from Tbl_Parents where parentName='" + Parent + "'";
        SqlDataReader dr6 = obj.ExecuteReader(ss);
        dr6.Read();
        string id = dr6[0].ToString();
        string bind = "SELECT AnuFeeMaster.StudentId, Tbl_Student.SName, AnuFeeMaster.Month, AnuFeeMaster.Year, AnuFeeMaster.FeeAmount, " +
                    " AnuFeeMaster.PaidAmount FROM  AnuFeeMaster INNER JOIN Tbl_Student ON AnuFeeMaster.StudentId = Tbl_Student.StudentId where ( AnuFeeMaster.StudentId ='" + id + "')";//and (AnuFeeMaster.ChkDate='" + date.ToString() + "') ";
        SqlDataReader dr = obj.ExecuteReader(bind);
        dr.Read();
        gv1.DataSource = dr;
        gv1.DataBind();
    }

最佳答案

删除dr.Read();行。

您正在通过已经提高了位置的阅读器。

08-16 18:55