The update statement syntax is
UPDATE [TableName]
SET [Column1] = Value1,
[Column2] = Value2,
.
.
.
[ColumnN] = ValueN
WHERE [Condition]
So your update statement should look like
UPDATE CREDOnet_Documents.dbo.SubUnitDocs
SET FileName= @FileName,
File=@File,
ContentType=@ContentType
WHERE ID =@ID
Take a look at the below links if you are not familiar with update statement
UPDATE (Transact-SQL)[
^]
UPDATE Basics in SQL Server[
^]
SQL UPDATE Statement[
^]