Posts by Rodrigo • 91 points
3 posts
-
2
votes2
answers2406
viewsA: Generation of Logs with Nlog?
Raphael, Follow as I did with the NLOG, install the Packages via nuget: Install-Package NLog Install-Package NLog.Config In Nlog.config include to targets the section below: <target…
-
3
votes2
answers111
viewsA: Why is the last letter of my code replaced by a question mark "?"?
Complementing the analysis of Onosendai: is yes including an improper line while writing to text file, after adjusting this worked. Also remove the "=" from your loop in the decryp method, otherwise…
-
1
votes2
answers514
viewsA: How to return a pure Json (without XML encapsulation) using webservice in c#
Hudson, modify the method to void and return as follows: HttpContext.Current.Response.ContentType = "application/json"; HttpContext.Current.Response.Write(js.Serialize(recibo));…