Latest Articles
-
Microsoft ASP.NET Article Of The Day (3-Jun-2015)
Great news to start the day. Feeling Happy!. My article got selected as Article of the day in Microsoft ASP.NET community (http://www.asp.net/community/articles) . This ... -
May month winner in C# corner
Wow!.Once again!!!. I am in the list of may month winner list from C# corner (http://www.c-sharpcorner.com/ ). This is the fifth time I am ... -
How to map your domain name to your Azure website
In this post we are going to learn how we can map our domain name to Azure. We all do have our own websites, ... -
How to host a website in Azure
In this post we are going to learn how we can host a website in Azure. Azure provides a way to host websites as ... -
How to hide a DIV when the website view in Mobile
Introduction Hi All, Hope you are fine. Today we will learn how we can hide a particular DIV element when the site is viewed ... -
Align DIV horizontally using CSS
Introduction Hi All, How are you today? Today we will learn how we can align out HTML DIV element horizontally using normal CSS styles. ... -
Change your Azure Website URLto your cname for all Posts and Categories
In this article we will learn how we can change our website URL which we have hosted in Azure. And here I am using ... -
Read appsetting from a web config file in client side
To read app settings key value from a web config file, do like the following. [js] var datalimit = ‘@System.Web.Configuration.WebConfigurationManager.AppSettings["JQXExcelLimit"]’; [/js] -
Disable the back button of a browser
Add this script to head section of that particular page. [js] <script language="javascript" type="text/javascript"> window.history.forward(); </script> [/js] -
Find out the nth element and get the particular string
To get the nth element [js] $.trim($("#pagerjqxgrid div:nth-child(3)").text()); [/js] To get the 1539 from a string of “1-10 from 1539” [js] $.trim($("#pagerjqxgrid div:nth-child(3)").text().split(‘of’)[1]); [/js]