I use this code to upload a photo in a Facebook page and it works!
dynamic parameters = new ExpandoObject();
parameters.message = message;
parameters.name = name;
parameters.url = photoUrl;
dynamic result = fbClient.Post(fbPageId + "/photos", parameters);
The problem is that Facebook does not show all the individual photos in the diary of the page, but but it shows the photos grouped in an album.
http://img827.imageshack.us/img827/7033/41802615.png
What it looks like.
http://img600.imageshack.us/img600/5474/40129748.png
How it should be.