User493558242 posted
Similar errors are everywhere! Just found another mistyped "I" in App_Code/ImageHandling.cs line 20.
The code was:
SqlCommand command =
new SqlCommand("INSERT INTO Images (title, origimage, largeimage, thumbimage, album) VALUES ( @title, @origimage,
@largeimage, @thumbimage, @albumid); select SCOPE_IDENTITY()", connection);
And should be:
SqlCommand command =
new SqlCommand("INSERT INTO images (title, origimage, largeimage, thumbimage, album) VALUES ( @title, @origimage,
@largeimage, @thumbimage, @albumid); select SCOPE_IDENTITY()", connection);
I should debug whole application and hunt for mistyped "i"s and "I"s.