Posts by Pedro • 44 points
2 posts
-
0
votes1
answer37
viewsA: in my code when I search for pre-inserted variables it shows the variable more than once
Exchange Count for x, the x that is serving as index. Each array has an index, which defines its position in the list, this index starts with 0: for (x=0;x< y; x++) { item[x] = textbox.Text;…
-
2
votes1
answer425
viewsA: How to send data array to Asp.net core controller
Good night. Make these changes and go testing one by one until it works: 1. When sending the date, do not send as "JSON.stringify({ data })", remove the "{}", will be as "JSON.stringify(data)", I’m…