Justin Cooney
Web Development Tips and Examples
Category: Programming
-
JSON is one of the most popular ways of transmitting data between a client and server and is more lightweight than its rival XML. There are many ways to access data in a JSON schema, but overall the simplest is to use pure JavaScript. Why not use an abstraction library such as JQuery? For simple…
-
This article is intended to be a collection of helpful links to resources for people (including myself) who are setting up and configuring IIS8.5 on Windows Server 2012. I am also providing a step-by-step example of setting up a new Web site in IIS and configuring it for Windows Authentication. If you find this article…
-
It’s considered best-practice to do browser detection based on features rather than the more error-prone detection based on the user-agent. For example, see this Microsoft browser identification best practices article for how they suggest you structure your Internet Explorer detection scripts by making user of the ASP.NET HttpBrowserCapabilities Object. If you are interested in reading…