.NET Features, Asp.Net, Feature, Visual Studio »

[3 Feb 2013 | 1 Comments]

In short use _references.js file with your web projects. What is _references.js?


With the latest Visual Studio a new file _references.js is found in the scripts directory. As you probably know, the `// ` syntax was introduced in Visual Studio long time ago to make you able to have intellisense in any JavaScript file to include everything defined in the JavaScript located at this path. Read more. [More]

Asp.Net, MVC »

[4 Dec 2012 | 0 Comments]

Moving from MVC 3 to MVC 4 read on. There are a number of references that need updating as well as update to the web.config(s). [More]

Asp.Net »

[24 Jun 2011 | 1 Comments]

For the case when you return a string back from the database and you want it converted to an enum..this works well. In leue of this approach is often a large case statement which is just ugly. Give this a try and let me know how it goes for you. [More]

Asp.Net, Javascript »

[16 May 2011 | 0 Comments]

Why Json? 1.) lightweight data-interchange format 2.) Easy for humans to read and write 3.) Easy for machines to parse and generate 4.)JSON can be parsed trivially using the eval() procedure in JavaScript 5.) JSON Supports: ActionScript, C, C#, ColdFusion, E, Java, JavaScript, ML, Objective CAML, Perl, PHP, Python, Rebol, Ruby, and Lua. [More]