以下代码:TextBox1录入内容后,TextBox2自动录入与之对应行的指定内容.但是没有实现.请帮忙
Dim txt As String = e.Form.Controls("TextBox1").valueDim dr As DataRowdr = DataTables("表A").Find("第一列 = " & "'" & txt & "'" ) If dr IsNot Nothing '如果找到, 则设置各列内容 e.Form.Controls("TextBox2").value = dr("第二列")End If