Author: Hardeep Singh
In this post we will learn about Easy way to remove special characters from string. There are many ways available to achieve this like we can use string.replace method we can also use regex and many more but there should be a simple c# method that should take care about this In this example I will …
Telerik’s Radgrid is a wonderful way to show all of your data but sometime something happens, which we never ever expected like RadGrid Column Being Displayed Empty If Its Contains Special Characters My case was that I need to show xml on the rad grid but rad grid displaying column all empty(No clue, what was happening wrong) only …
Hello world, in this article, I am gonna show you, How To Get Short Date String In Jquery In this post, I am gonna show you how we can get complete date without concatenating Date.getYear(), Date.getMonth(), and Date.getDay() each time. So I will create an extension method in jquery that will return complete date(How simple :)) …
During work, my requirement was to Validate Each Input Type Field For Null Values but I also don’t wanted to call one function for each input type field like document.ready(function () { $('#input1').on('onchange', functionName); $('#input2').on('onchange', functionName); $('#input3').on('onchange', functionName); }); Any my another requirement was that I need all input type fields except hidden fields, so in order to …
In this article I will demonstrate that how we can fix issue of “Updates Not Being Reflected in Azure Website” Sometimes things are not in our hand and this frustrate us. So the main question is why its happening? Why Updates Not Being Reflected in Azure Website? Well I also don’t know exactly why changes not being reflected on …
The command document.location.href=”www.google.com” is not working in google chrome browser. So your question would be Why Location.href not working? Well its depends how you’re trying to use location.href. Sometimes, we put button inside the form element with action property empty or with ‘javascript:;’ (please take a look) in order to redirect user one page to another. So in this case …
In this article I will explain how we can Prevent JQuery Ajax Request from Caching In IE(Internet Explorer). You may noticed that only Internet Explorer by default caches the AJAX request, no other browser, by default, caches AJAX requests… but Internet explorer does and when you make second AJAX request with same parameters what internet explorer does instead creating another …
I was looking for a stuff like which should be similar to the JavaScript’s Alert but have some cool design and effects. Google is my best friend ;), so I decided to do some research on it and I got many of references that was good but don’t exactly what I want. I wanted stuff similar …
In this article, I am going show you how we can call any javascript’s function after ajax request in Kendo DropdownList or we can say databound functionality in Kendo DropdownList. Kendo DropdownList tool provides very beautiful look and effects and there are many different ways of binding options are available like you can bind data with ajax …
In this article I am going to show how we can redirect between areas in MVC. When using area, we should always specify the area in route value in the action link. If link/destination is outside from area, then we just need to use an empty parameter for the area. I am going to show you …