I'm getting the following error:
of type 'website' is invalid because the given value 'fr_be' for property 'og:locale:locale' could not be parsed as type 'enum'.
After looking at https://developers.facebook.com/docs/messenger-platform/messenger-profile/supported-locales/, I wonder why fr_BE is not supported, but nl_BE is.
Is there a specific reason, or is this a bug?
Thank you.
Best regards
Related
CodeAny Idea why I am getting this error. I have tried googling this, error and I don't think I am missing any required packages.
If that's your original token, delete it!
If guess the problem is with your file path, the file doesn't exist where you've pointed it to.
I have this OData route working:
[ODataRoute("ClassA/{classAId}/ClassB/{classBId}/ClassC")]
But when I add a argument to the end, it is not found any more and returns 404.
[ODataRoute("ClassA/{ClassAId}/ClassB/{ClassBId}/ClassC/{classCId}")]
Any suggestions on what could be wrong? An answer to this question could be verifying the route format and listing requirements for it to work as I clearly am missing something.
Oh, found the problem my self. The problem was not the route definition which was perfectly valid. It was the uri I used to query the route.
I was using this formatting for the query: ClassA("ClassAId")/ClassB("ClassBId")/ClassC("classCId")
The problem was the type of classCId, it was an integer - not a string. So a type problem can return an odata route not found error.
So, correcting the uri solved the problem:
ClassA("ClassAId")/ClassB("ClassBId")/ClassC(classCId)
I am getting
The provided value 'undefined' is not a valid enum value of type XMLHttpRequestResponseType. cfs_upload-http.js:109
when trying to upload a file using collectionfs. This does not affect the upload on the browser but seems to be keeping me from uploading in a mobile app. Any help on how to resolve this issue would be extremely appreciated. Thank you.
I got the famous error "InvalidCastException was unhandled by user code"
Unable to cast object of type 'System.DateTime' to type 'System.String'
But I have not found the solution to my problem on the forum.
First I have no type "string" because my form contains only a datapicker.
Secondly, the field is a smalldatetime in my SQL database.
So, I don't know why it says that!?
The Error appears in the automatic file "my_program.Web.g.vb" when i input a date (from Datapicker) into my form.
[Error on my_programm.Web.g.vb]http://img4.hostingpics.net/pics/854888Untitled.png
Here is the field of my form:
<dataFormToolkit:DataField>
<sdk:DatePicker SelectedDate="{Binding StartingDate, Mode=TwoWay}"/>
</dataFormToolkit:DataField>
Have you an idea for this problem?
Thank you in advance
Cordially
It was very stupid
In addition to the conversion that I did as you suggested, I left a "StringLength(..)" tag dragged in another part of the code -__-
Really sorry for the inconvenience and thank you
Cordially
I am doing .net application which is in vb.I am getting an runtime error when running in Internet Explorer,but its running in mozilla. Error as following
Error:SysArgumentTypeException:Object
of type
'AjaxControlToolKit.Animation.Length
Animation' cannot be converted to type
;AjaxControlToolKit.Animation'.Parameter
Instance.
Error is getting in MicrosoftAjax.debug.js
if(!this.isInstanceOfType(instance)) throw Error.argumentType('instance',ObjectgetType(instance))
What may be the reason for this error.What can i do to resolve this? Can anybody help?
The error indicates, that you are trying to cast a type called Length Animation to a type called Parameter. In VB and VB.NET, the cast is tried implicitly if the types of an assignment doesn't match. Please have a further look at the stack-trace to find the exact line of the error.
PS: I didn't know that there could be spaces in a .NET type name...