Posts by Jeff Silva • 48 points
3 posts
-
0
votes1
answer422
viewsA: Get specific value from a JSON JAVA URL
You can turn the return of json into a map, then search by key and value for example: HashMap<String,Object> result = new ObjectMapper().readValue(JSON_SOURCE, HashMap.class);…
-
2
votes2
answers516
viewsQ: Datatable column filter Asp net mvc5
I have a problem using the plugin datatables column filter, it does not report me error but also does not generate filters, follow my code: <script language="JavaScript">…
asp.net-mvc-5asked Jeff Silva 48 -
1
votes1
answer817
viewsQ: Catch AD user Asp net mvc
Guys I have a question: how do I get the user logged into windows on the client machine? It’s getting the server user and not the client machine. Could you help me?