After pushing some large dlls into our repository I noticed the other users of that repository were getting the following error while Taking PULL: "C:\Program Files (x86)\Git\bin\git.exe" pu...
I decided to work with the TikaOnDotNet project today. For that I downloaded the dlls via Nuget. But after downloading them I was getting the following compilation error: Referenced assembly TikaOnDot...
Below is the code to show how to pass params to jquery trigger function: $('#TestAnchor').on('foo', function(event, param1, param2) { alert(param1); alert(param2); }); $('#TestAnch...
I was getting the following error on one of our page: The length of the URL for this request exceeds the configured maxUrlLength value. Fix : Fix was to Update MaxUrlLength of httpruntime section in w...
Following are the outcomes of my test which I did in my ASP.NET site with app pool set as "Network Service" identity. I did these tests with Forms Authentication.. Case 1: When impersonation...
I added few properties in one of our Business classes in our application Communifire.I started getting the following error: Type 'xxx' in Assembly 'ScheduleWidget, Version=2.2.0.0, Culture...
While working with our product Communifire one of our clients was facing an issue regarding axd files, the WebResource.axd and ScriptResource.axd files were not working i.e they were giving the follow...
After hibernating my machine having Windows 7 SP1 installed, it was doing restart everytime, this was not the expecyed behavior of hibernate feature. To fix this issue I went to "device manager&q...
I noticed on my machine that I was having 1.75 GB unallocated space. I decided to reclaim that space and add that to my "D" partition. For that I did the following steps in command prompt: M...
If you want to change text from english to hindi as you type in the textbox the following code can help you: <html> <head> <meta http-equiv="Content-Type" ...
Today I was trying to open multipl Twitter bootstrap modal one above the other i.e in stack. After the second modal initiate script ".modal('show')' the Chrome was getting crashed. Be...
I use to write curly braces for if-else, for and foreach loops even if they are of single line statements. If you want to to force Resharper to add it you can do that via Resharper > Options &a...
In order to enable hibernate option you can try the following methods: Run "powercfg -h on" command in command prompt with admin rights. Set the following DWORD "HKEY_LOCAL_MACHINE\SYST...
If you are experiencing this issue where Forms authentication is not working in IE10 this blog will help you. Microsoft has released a hotfix for it http://support.microsoft.com/kb/2600088/en-us After...
While working with web.config configuration on parent - child sites, both ASP.NET one I was getting the following error in the parent site: An ASP.NET setting has been detected that does not apply in ...
While deploying a new application for our our product Communifire as a child application of exisiting site we were getting: "Could not load file or assembly 'assembly name' or one of its ...
I was using TinyMCE 4 and in my case my tinymce.js and tinymce folder with plugins were at different locations. Basically, I was combining the tinymce.js with my other js files to make a single script...
If you are looking for removing "new document" in file option in Tinymce 4 , this blog will help you. In the config settings you need to set the " removed_menuitems: 'newdocument...
If you want to search a string|text in all the tables, rows, columns below script will help you
I download the AdventureWorks2008R2 database today from the following location http://msftdbprodsamples.codeplex.com/Releases/ . While attaching the "AdventureWorks2008R2_Data.mdf" I was get...
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...