I am just done a program on the vb 2008 express, and do the same program on the vwd 2008 express, but as you knew, the codes on vb 2008 express and on the vwd 2008 express are different, I want to know as sample
Dim strsql As New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=C:\Users\user\Desktop\honor.mdb")
Dim cmsql As New OleDbCommand("UPDATE anndep SET deppw = @deppw WHERE depaccount = @depaccount", strsql)
With cmsql.Parameters
.AddWithValue("@deppw", TextBox2.Text)
.AddWithValue("@depaccount", ManagerLogin.TextBox3.Text)---- x
End With
On the mark x - ManagerLogin.TextBox3.Text, I want to use the textbox3.text value on the Managerlogin.aspx.vb, and vwd 2008 express won't take ManagerLogin (not defined), how to fix this? Thanks.