ineternet
ineternet
CC#
Created by CoffeeBot on 3/28/2024 in #help
JWT tutorials.
what do you mean not work? the (slightly) outdated asp.net docs from microsoft about JWTs should still work in .net 8, what are you having issues with?
3 replies
CC#
Created by EnderWolf on 12/3/2023 in #help
mvc not finding blazor item, 404 not found
can you show your program.cs
3 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
you could try Enumerable.Empty
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
It probably calls icollection.add or something like that, I doubt it implements proper inserting for each type of colleciton
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
array.empty is length 0, it tries to put in the string, fails, so empty array
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
i mean, array size cant be changed
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
Web API parameter binding is not able to convert several parameters from the query string into an array
https://stackoverflow.com/questions/30318428/multiple-parameters-by-the-same-name
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
Either way why are you trying to fill a list/array from the parameters, if you can only put one value for the parameter in the URL?
52 replies
CC#
Created by cumslvt13 on 5/11/2023 in #help
✅ Binding array with default value doesn't work
Probably because it can't figure out how to put a single string in an array, but when it tries to make its own list, it makes a List<string> (and puts the value in)
52 replies
CC#
Created by hanu on 2/9/2023 in #help
❔ What is the recommended way to read excel(*.xlsx) files?
ive had success reading .docx files by opening them as zip files, you can try the same with .xlsx
24 replies