0

次のエラーがスローされます。

index was outside the bounds of the array

このコードを使用する場合:

con.Open()
            qur = "select Username,password from registration where Username='" + TextBox1.Text + "'"
            cmd = New SqlCommand(qur, con)
            dr = cmd.ExecuteReader()
            If dr.HasRows() Then
                dr.Read()
                Session("us1") = dr.GetValue(11).ToString()
                Session("ps1") = dr.GetValue(12).ToString()
                If Session("us1") = TextBox1.Text And Session("ps1") = TextBox2.Text Then
                    Response.Redirect("APP.aspx")
                End If
            End If
        End Sub

誰かがどこで/なぜそれが間違っているのか指摘してもらえますか?

4

3 に答える 3