So you want to include/exclude references based on your solution configuration. In Visual Studio you can specify solution configuration modes and in the properties of your projects you can have their settings differ based on the mode you put your solution into. For instance, if you have code that only should be run in debug mode, you can place a fragment of code that gets built when your solution is in debug mode. When you select release mode, this fragment is skipped during the build process and your application is none the wiser.
Friday, July 13, 2012
Modifying an internet request with a proxy rule *(fiddler rule)
I was approached to help increase the usability of a script a friend of mine wrote. This script he wrote manipulates the page and you have to put it into the address bar after you have loaded your page.
Tuesday, February 21, 2012
RestSharp and Advanced POST Requests
I have learned much about how RestSharp handles POST requests as of version 102. If you provide parameters of the GetOrPost type, by default the post mechanism places these parameters
Subscribe to:
Posts (Atom)
Ajax Lesson
NOTE : This lesson uses jQuery as the interface for basic AJAX work. By no means is AJAX a product of jQuery and you do not need jQuery to ...
-
I have learned much about how RestSharp handles POST requests as of version 102. If you provide parameters of the GetOrPost type, by default...
-
What prompted me to use handsontable I was working on replacing an old Excel web control with a more user friendly and needed a JavaScript...