Blog
Blog posts on .NET, Azure, and more.
How to integrate JQuery UI Datepicker in MVC
May 05, 2014 by Anuraj
.Net .Net 4.0 ASP.Net ASP.Net MVC HTML5 Javascript
This post is about integrating JQuery UI DatePicker in MVC 4. First you need to modify the _layout.cshtml. Because by defualt, it won’t include required references for JQuery UI. You need to include both CSS and JS for JQuery UI references. So the modified _layout.cshtml will look like this.
Loading partial view on Ajax.Actionlink click
May 04, 2014 by Anuraj
.Net ASP.Net MVC HTML5 Javascript
While working on an MVC project, I had to create few partial views and load them dynamically using Ajax. Here is the code snippet for the same.
How to get code coverage in javascript
April 07, 2014 by Anuraj
Code coverage CodeProject HTML5 Javascript
Long back I did some posts on getting code coverage in C#. And one of my previous posts was about implementing TDD in JavaScript. This post is about getting JavaScript code coverage. In computer science, code coverage is a measure used to describe the degree to which the source code of a program is tested by a particular test suite. A program with high code coverage has been more thoroughly tested and has a lower chance of containing software bugs than a program with low code coverage. - Wikipedia.
How to write an Extension for Google Chrome
March 20, 2014 by Anuraj
CodeProject HTML5 Javascript
This post is about creating simple google chrome extension, which will help you to find Malayalam meanings of selected word. The very first thing we’ll need to create is a manifest file named manifest.json. The manifest is nothing more than a JSON-formatted table of contents, containing properties like your extension’s name and description, its version number, and so on. At a high level, we’ll use it to declare to Chrome what the extension is going to do, and what permissions it requires in order to do those things.
Test-driven development in Javascript
March 19, 2014 by Anuraj
ASP.Net CodeProject Javascript Unit Testing Visual Studio
Test-driven development (TDD) is a software development process that relies on the repetition of a very short development cycle: first the developer writes an (initially failing) automated test case that defines a desired improvement or new function, then produces the minimum amount of code to pass that test, and finally refactors the new code to acceptable standards. Here is fundamental mantra of TDD:
Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub