Posts by Juliano Oliveira • 181 points
5 posts
-
1
votes2
answers881
viewsA: Format data dd/mm/yyyy in a jquery Datatable.net
Serialize the data to Datatable.net already in the correct format instead of using javascript to format the date. Deliver the data already ready. In this line: oCliente.DataCadastro =…
-
1
votes2
answers78
viewsA: Serialize Nhibernate object for JSON
You should not serialize a domain object. You should always load your domain object, with Nhibernate for example, and turn it into a Viewmodel, ie a representation of that object for a given call.…
-
3
votes2
answers955
viewsA: How to manage approval and production environments with Team Services?
Completing Gypsy Morrison’s Response, To manage and deploy multiple environments you can use Release Management https://www.visualstudio.com/team-services/release-management/ Here we work as Gypsy…
-
2
votes2
answers172
viewsA: serialize class item in textual documents
In json, using Newtonsoft.Json: http://www.newtonsoft.com/json/help/html/serializingjson.htm Product product = new Product(); product.ExpiryDate = new DateTime(2008, 12, 28); JsonSerializer…
c#answered Juliano Oliveira 181 -
1
votes3
answers184
viewsA: Return BD values via ajax
Error 500 is a generic HTTP error, you don’t know what’s going on. You need to read the page with the result of the request. Also, if your IIS is not configured to show errors it will not solve. Try…