Posted on: 11/11/2014 3:42:43 PM | Views : 436

Hello
I am getting the following errors:
'username' is not declared. It may be inaccessible due to its protection level. 
'password' is not declared. It may be inaccessible due to its protection level. 
'strEmail' is not declared. It may be inaccessible due to its protection level. 
I was not getting these errors before - just recently.
My aspx.vb script looks like this:
Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) username.Focus() LblDate.Text = ReturnDate() End Sub Protected Sub CreateUser1_Click(sender As Object, e As EventArgs) Using conn As OleDbConnection = New OleDbConnection(System.Configuration.ConfigurationManager.ConnectionStrings("students").ConnectionString) Dim Sql As String = "INSERT INTO university (username,[password],strEmail) VALUES (@username,@password,@strEm ...

Go to the complete details ...