­
Administrator Mode

What you can't do when you are in Visual Studio Administrator Mode instead of User Mode

00:27
As described above, We cannot move existing folder into the project if we are in visual studio administrator mode. Drag and drop won't work there. It's because Window Explorer is a user process. Lesson learnt. ...

Read More...

ASP.NET

Error CS1513 : Upgrading From ASP.NET MVC 3 to New Version

17:31
Recently, I encounter the bug of code CS1513 while trying to compile old project of MVC3 into newer version. Compiler Error Message: CS1513: } expected I found out that without proper usage of Razor syntaxes, you will encounter this when you upgraded MVC to latest version. There are several ways might cause you this error. For example, Instead of @if(@variable) You should @if(variable)...

Read More...

Bootstrap

Customization - Bootstrap Multiselect - Set Custom Text and Showing Numbers On Selection

17:13
Following is a short note on how to customize the display in Bootstrap Multiselect. I had encountered difficult in finding the documentation online. Hence after go through the js itself, there are options for us to set the text when none is selected/all are selected and options like to show the total number when all are selected. Bootstrap-Multiselect component is one of the best extension...

Read More...

Bower

Gulp / Grunt wiredep not injecting font-awesome

17:09
When I run the wiredep to have all dependencies correctly injecting into my index page. Font-awesome was left out. It failed to inject font-awesome when running gulp wiredep. Solution: In order to include them you need to include overrides method in the bower.json file. This is the update by font-awesome that affect the allocation Hope it helps! ...

Read More...