We started using Font Awesome in our application and I noticed for .woff files console was showing 404 error. I cross checked our application and the .woff files were present at the desired location. ...
Taking database backup via SSMS GUI produces some time lag in doing that. If you want to do the same database backup stuff via command it can be an instant process. You can use the following query to ...
On my machine I had so many unwanted entries (server names, usernames) coming in my SSMS login screen. I wanted to delete them but there was no simple way to delete it. After spending few minutes to g...
I was working with a program noticed where I needed to use curly itself inside a string and string.format was not wroking with it. I was having the following sting: string myString = string.Format(&qu...
After upgrading to TinyMCE 4 I noticed the following code was no longer working: tinyMCE.execCommand('mceAddControl', false, id) i.e "mceAddControl" was not working. I came to know f...
After upgrading IE to IE10 on my machine (Windows 7 64 bit) I was facing weird issues with ajax "POST" calls. The data was not posted to server with IE10, I confirmed that with fiddler . The...
If you are looking for removing toolbar options in Tinymce 4 , this blog will help you. In the config settings you need to set the " menubar: false " like this: <script type="tex...
While using "navigator.getUserMedia" I was getting NavigatorUserMediaError PERMISSION_DENIED: 1 error in my console. At the time of writing this blog I was having "Chrome "Version ...
While working with SQL Server 2008 R2 I was getting the following error: "Saving Changes Is Not Permitted On SQL Server 2008" I am writing the steps how you can fix it: Click Tools > ...
While working with "load" method of image I noticed it was not working successfully in IE. I was using the following code: $('<img/>').attr('src', '<...
In our application we made custom Image modal for image upload for TinyMCE. When user clicks any the images inside that modal we are inserting that image inside the tinyMCE editor. The code was like t...
If you want to replace smielys with custom images this blog will help you. Let's say ypu have the following string hello :) :( and you want that to be converted to "hello happy sad", bas...
Fix: HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a M...
I was facing a weird issue today where I one of my css files were not opening and was thoughing a redirect loop: I was trying to access the following URL : "http://mydomain.com/Assets/FontAwesome...
I did Windows Update today and noticed my sites started getting "Unrecognized attribute 'targetFramework'.Note that attribute names are case-sensitive" on running them . I double che...
I was installing the following hotifx http://support.microsoft.com/kb/2600088/en-us today and started getting the following message while installing it: KB2600088 does not apply, or is blocked by anot...
I was working with constants variables in one of the files in my application and noticed the variables names was in pascal case instead of all letters in UpperCase. I pressed CTRL + SHIT +U and my wor...