我想要的是在我登录后我想在我的home.aspx中更改我的label.text 我该怎么办 。 VB.net中的问题比ASP.net 我一直都是
Home.aspx.label.text = userTxt.text
但是在这个asp上我遇到了一个问题
If userTxt.Text <> "" And passTxt.Text <> "" Then
cmd = New OleDbCommand("Select * from loginClient where emailaddress = '" & userTxt.Text & "' and password = '" & passTxt.Text & "'", cnn)
rdoleb = cmd.ExecuteReader
Response.Redirect("main.aspx")
rdoleb.Close()
If rdoleb.Read = True Then
If userTxt.Text = rdoleb.Item(2) And passTxt.Text = rdoleb.Item(3) Then
rdoleb.Close()
End If