--
Dim v1 = e.form.controls("TextBox3").text
Dim fdr As DataRow = DataTables("分数排名表").find("分数 = \'" & v1 & "\'")
If fdr IsNot Nothing Then
e.Form.Controls("TextBox4").Text = fdr("排名")
Dim dr As DataRow = DataTables("分数排名表").find("去年排名 <= " & fdr("排名") & "", "去年排名 desc")
e.Form.Controls("TextBoxt5").Text = dr("去年分数")
Dim dr2 As DataRow = DataTables("分数排名表").find("去年排名 >= " & fdr("排名") & "", "去年排名")
e.Form.Controls("TextBoxt5").Text = dr("去年分数")
End If
是这样么,textbox4显示了,可是textbox5显示这样的信息
此主题相关图片如下:7.png
