How to reload printers in coldfusion without restarting service?

To use a network printer ColdFusion is going to need to be running under a domain account that has permissions to network resources. The default user that the ColdFusion Windows Service runs under is localSystem. This user account normally has lots of permissions to the local system but no permissions on the network. The usual … Read more

$.ajax context option

All the context does is it sets the value of this in the callbacks. So if you’re in an event handler, and you want this in the callbacks to be the element that received the event, you’d do: context:this, success:function() { // “this” is whatever the value was where this ajax call was made } … Read more