I tried your solution and it did work great! Thanks again.
For future reference here is the query:
UPDATE theDb_image SET [views] = Coalesce([views], 0) + 1 WHERE imageId=@imageI
It seems that the Coalesce function is perfect for this scenario. I have never used it, but now I have added a powerful new tool to my arsenal.
"Given a number of arguments, the Coalesce function will return the first argument that does not have a value of null. Note that if all of the arguments are null, Coalesce itself will return null!"