When developing custom Sitefinity widgets, you want to make sure that the ascx file used for the display can be…
Category Archives: Programming
a collection of software/web development resources
How to: Change the display of input controls (even multiline TextBox) to look like a label (CSS)
Strange requirement, I would agree, but when working with Nintex forms, you may have some input fields that were then…
How to: Troubleshoot broken/blank WordPress sites
Summary 1. Enable debug mode. i. edit wp-config.php ii. set WP_DEBUG to true 2. Fix the issue. i. reload the…
How to: Create a simple fly-out message in SP2010
I wanted to use a fly-out message to inform a user who was navigating from a configuration page to the…
Debugging Tips and Tricks in Visual Studio 2013
I came across this TechEd video that I found really useful with optimising my debugging with VS2013. My notes on…
Quick tip: MS Content Delivery Network
Things you notice while watching videos on Microsoft Virtual Academy: ASPNETCDN. This is rather embarrassing -for a .NET developer- but,…
How to: Call a WCF Web Service from a Nintex Form and work with the returned JSON object
Probably, the best way to go about calling a web service from your Nintex form would be to do it…
How to: Apply a class to all elements of a specific type on a page
I needed to be able to apply a specific class to all my img tags that were linked to their…
How to: Automatically expand to the current node in a KendoUI TreeView
Unfortunately, the KendoUI TreeView does not implement the SingleExpandPath that the RadTreeView does. If that were the case, a simple…
How to: Get a list of the names of all the computers on a domain
How to: Get a list of all computers on the domain add the following references: System.DirectoryServices System.Net System.Net.NetworkInformation The following…