Hi
I have created a website on one computer and then I moved it to my other computer, But then I get a lot of errors when I use this code...
Dim o As New List(Of BookHandler)
Dim db As New DataClassesDataContext
Dim MyList = From p In db.p_GetAllBooks(StartDate, EndDate)
For Each _p In MyList
Next
I get the following warnings and errors..
Warning 8 Variable declaration without an 'As' clause; type of Object assumed (this is on the Dim o As New List...)
Name '_p' is not declared
Why do I get all these error on the other computer when I just copied it?