Posts by Pedro Igor • 166 points
3 posts
-
3
votes2
answers621
viewsA: Read a specific value in Json with PHP
Return values to json and use json_decode(), which will return an object or matrix if the second value is true. Example: $json = '{"paisId":"84","produtoId":"1","status":"0","opId":"134"}'; $json =…
-
11
votes2
answers11683
viewsA: What is the difference between Arrays.asList and List.of?
Arrays.asList() Returns a fixed-size list supported by the specified matrix. This method acts as a bridge between array-based and collection-based Apis. Example: package com.exemplo; import…
-
1
votes0
answers282
viewsQ: Problem with paging due to loading of Gridview and Dropdownlist on the same Page.Postback
Next, I have a gridview that it needs to be inside a postback to be able to perform an update when selecting a checkbox. The problem is that I have a filter using a DropDownList, if I leave mine…