16,721
社区成员




Dim DB As New DataBase
Dim DT As DataTable = DB.SelectSql("select * from user where name=" & TextBox1.Text.Trim)
If DT.Rows.Count < 0 Then
Exit Sub
End If
If DT.Rows(0).Item(1) = TextBox2.Text.Trim Then
MsgBox("", 0, "")
End If