Posts by Eric Saboia • 91 points
6 posts
-
0
votes1
answer154
viewsA: JSON conversions
Solved: I used the Json.NET framework applied by Nugget in Visual Studio 2015 and imported it into the project: using Newtonsoft.Json; I got the values from . aspx: string serializada = @"" +…
-
2
votes1
answer154
viewsQ: JSON conversions
I’m a beginner in C# and ASP.NET, and I’m having doubts about JSON and dictionaries I have a serialized Dictionary that was stored in the database with: var json = new…
-
3
votes1
answer47
viewsA: Disable automatic refresh from a Grid
Solved: I only removed the tag <AjaxUpdatedControl>.
-
3
votes1
answer47
viewsQ: Disable automatic refresh from a Grid
Hi, I’ve been trying to disable refresh a for a long time AjaxUpdatedControl of a RadGrid which occurs when I click on a button of this Grid. Does anyone have any suggestions on how to do this?…
-
1
votes2
answers573
viewsA: How to search a table by date and add values contained in it?
Hello, I believe you’re looking for something like this: SQL SERVER UPDATE TABELA_A SET VALOR = X+Y WHERE DATA = GETDATE() or Oracle UPDATE TABELA_A SET VALOR = X+Y WHERE DATA = SYSDATE() The…
-
0
votes0
answers155
viewsQ: Arduino - Ethernet Shield - Server connection
I have a server and an Arduino with a temperature sensor, but I’m not able to do a POST of the values taken by the sensor on the server page. Can anyone help me? Follow the code. #include…