Today I tried installing Windows 8.1 with virtualization via Oracle VM Virtual Box. As soon as I started booting it with Windows 8.1 ISO file I was greeted with the following screen: Your PC need to r...
If you want to detect what is the memory limit per application for your device you need to write the following piece of code.
If you are facing the following issue Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES] while running your android app with phone connected with USB device then you need to uninstall the app fi...
In this article I will show you how to add a strong name to an existing dll. We need to do the following 4 steps in order to add strong name to an existing dlls: Generate a KeyFile. Generate the MSIL ...
In this article I will explain how to get readonly textbox value in codebehind file. I am writing this article to resolve these issues: • ASP.NET Ready Only TextBox lose client side changes, values ac...
In this article I will explain how to import data from EXCEL to SQL in ASP.NET . In many situations we have data in the form of excel sheet but we have the requirement to have that data in SQL SERVER ...
In this article I will show how to use jQuery Autcomplete in ASP.NET application. Autocomplete is one of the most needed feature while making applications where user demands the auto predicting featur...
In this article I will show how to implement jQuery cascading dropdownlist using jQuery and ASP.NET. Cascading drodpdownlist means when one dropdownlist is dependent on other dropdownlist. Let's t...
In this article I will show how to call ASP.NET webservice using jQuery. Webservice call using jQuery will let you to prevent the re-rendering the entire content of the page. The request is made parti...
I have seen many programmers having confusion between PUT vs POST while making REST API It is not mandatory that you have to use both PUT and POST in our application, it depends on what is the require...
In this article I will show how to shorten url with jQuery. I am going to use bit.ly api to shorten the urls. I have made a custom jQuery plugin which will use bit.ly API to shorten the longurl. URL s...
In this article I will show how to check username with jQuery and ASP.NET. This will let the users know if a particular username is available or not during the process when they are filling out the re...
In this article I will explain how to reorder list using jQuery and ASP.NET and the saving the item's updated order in the database. The advantage of reordering list with jQuery is that it is ligh...
In this article I will explain how to use jqGrid with ASP.NET. jqGrid is one of the most popular jquery grid and it is one of the best grid component. With the help of jqGrid wecan represent and manip...
In this article I will explain one reference of Composite pattern used in ASP.NET framework. We all are familiar with Render method used in ASP.NET. It is the last hook to modify the content which is ...
The State pattern allows an object to change its behaviour when its internal state changes. This pattern comes under Behavioral Patterns section. This pattern is used to represent the state of an obje...
This pattern enables to build agile software architecture by decoupling items/objects which produce information and items/objects which consume it. The publisher/subscriber pattern is a software desig...
The Apache log4net library is a means to help the programmers output assertions or logs to a variety of output targets. It is very helpful in the cases where you are facing problems with an applicatio...
Recently one of my developers asked me regarding the overflow property of CSS. He was having some confusion regarding various options (visible, hidden, scroll and auto) provided in overflow property. ...
In this article I will show how to insert, update and delete data with SQLDataSource control. The SqlDataSource control makes use of ADO.NET classes (System.Data.Odbc, System.Data.OleDb, System.Data.S...
In this article I will explain what and where is the use of flags attribute in enums. By setting the flags attribute over the enum, each enum value will be treated as bitflag pattern. Enum should have...
In this article ASP.NET Page Life cycle is explained.Various Stages starting from initialization to unload of a pages is covered in this section.
In this article the difference between Int32. Parse , Convert.ToInt32 and Int32.TryParse is discussed.
In this article I will discuss how to add jQuery intellisense in Visual Studio 2008. I will discuss • How to add jQuery intellisense in .aspx page ? • How to add jQuery intellisense in external javasc...
In this article I will explain you how to prevent user data to lose when he accidentally click refresh or click the back browser button or click close button of browser ,or any task which leads to los...