Imar,
Ignore me :o) - just had to engage my brain
Just changed the InsertUpdateSingleItem stored proc to:
UPDATE [Content]
SET Title = @title, IntroText = @introText, BodyText = @bodyText, ContentTypeId = @contentTypeId, CategoryId = @categoryId, Visible = @visible,
UpdateDateTime = { fn NOW() }
WHERE (Id = @id)
which works fine.
Thanks
|