Debugging Knockout
I’ve been learning Knockout recently and I found that sometimes it is hard to find out how your View Model is being formed especially when you create the view from Model in MVC To inspect your…
I’ve been learning Knockout recently and I found that sometimes it is hard to find out how your View Model is being formed especially when you create the view from Model in MVC To inspect your…
1. Change the app.config/web.config of your application that calls the WCF service by adding System.diagnostics detail as below Code Snippet <system.diagnostics> <sources> <source name=”System.ServiceModel” switchValue=”Verbose,ActivityTracing” propagateActivity=”true”> <listeners> <add type=”System.Diagnostics.DefaultTraceListener” name=”Default”> <filter type=”” /> </add> <add name=”ServiceModelTraceListener”>…
I was struggling in finding out of how to make a simple delegate like in AJAX request through javascript. It takes me a few days to figure this out Basically the problems are: -I need to…
ParseJSON returning you an object from your AJAX Call, the problem that I have is my object properties has invalid character (e.g “#”) Assuming jsonData is my variable that contains the following information I’d like to…
I tried to install umbraco in shared webhosting from the control panel but instead the error that I’m getting is The application could not be installed: Error occured in Web App Gallery module From my research…
I have a function that is used to save a file base on the user input (basically the user can type whichever filename and whichever path) and the code is not handling the invalid filename or…
This is an application to access your Web Service/API without worrying to create your own client application for the sake of testing. Personally, I’m using soapUI (an open source application to test web service) http://sourceforge.net/projects/soapui/files/ I’d…
CLR Profiler can be used to analyse how your object is allocated in memory and which object has taken the most memory. It also can be used to detect memory leak To download CLR profiler for…