On 8/4/11 1:35 PM, LucaDev wrote:
> "application / json, charset = utf-8"
This is may or may not address your problem but "application / json" is 
not a valid content type. Drop the spaces. Same with charset = utf-8, 
and you also need a semicolon as delimeter, not a comma.

The following is not valid:

contentType: "application / json, charset=utf-8"

The following is valid:

contentType: "application/json; charset=utf-8"
_______________________________________________
Mono-aspnet-list mailing list
Mono-aspnet-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-aspnet-list

Reply via email to