Category Archives: .Net Coding

Deserializing JSON on .NET

Hello, You can use the .Net classes that come with the framework “System.Web.Script.Serialization” that are a pain on the ass to understand. But if you do you can go with it… Should be something like: Dim serializer As New JavaScriptSerializer() … Continue reading

Posted in .Net Coding, Medium Technical | Tagged , , , , , , , | Comments Off on Deserializing JSON on .NET

Share Cookies Between Subdomains on .NET

Hello, Here is quick tip: If you use the simplest way to write a cookie on ASP.NET: Response.Cookies.Set(New HttpCookie(“TestCookie”, “TestData”)) It will be only readable by the subdomain that you used to write the cookie… If you want the cookie … Continue reading

Posted in .Net Coding, Basic Technical | Tagged , , , , , | Comments Off on Share Cookies Between Subdomains on .NET