Class not being found online but works locally -- CS0246: The type or namespace name 'Class' could n
- by Andrew G. Johnson
I am getting this error after uploading my web app to my Rackspace box.
CS0246: The type or namespace name 'User' could not be found (are you missing a using directive or an assembly reference?)
It's odd because it works fine on my local computer where I do development. The actual line of code is:
public User user = new User();
I am using C#.