Show truncated string with dots appended with CSS3
Showing starting few words of a long text by not using client side or server…
Showing starting few words of a long text by not using client side or server…
What is Memory Leak? Memory leak is a bug that mainly occurs when a program…
Active directory Authentication using forms authentication and login control in ASP.NET: For Active directory authentication…
In this tip I am explaining different ways to break out of a very deeply…
Sometimes we need to create customer portal user in test class to run the functionality…
Sharepoint 2010 has so many new exciting features and one of them is InPlace Record…
Using AJAX and web services in your application can make it richer. But passing information…
1. Who can start CUDA programming? – Any one who has some basicknowledge on C…
This tip describes how text can be converted to image using Java awt.. Step1: Create…
n many projects we give options to users to add multiple rows for submitting multiple records. To do this…
What is hashmap? A Hashmap is like a foreign language dictionary. You have a key which you use to look up corresponding value.The Hashmap uses a hash of the key…
Sometimes when designing a table in html page we find a lot of columns for a table which exceeds the width of the page. In this case the horizontal scrollbar…
Although GridView is a very powerful control provided by ASP.NET, it has a major flaw : Whenever we are populating the GridView from database, then, if there is some data…
For almost all HTML controls there are its corresponding ASP.NET controls. For HTML ‘Div’ there is its ASP.NET counterpart ‘Panel’, for HTML ‘Span’ there is ASP.NET ‘Label’. Likewise for HTML…
The option to share events on Google Calendar is an important feature introduced by Google to as an answer to the changing needs of users as they spend more time…
Here is a simple tip on jqGrid. Some times there are requirements in the project to hide all the tooltips(that is automatically displayed in all the columns) in jqGrid. So,…
Often we deal with XML content/files in our projects, for read/write/parse/save/delete etc.. operations. The two classes that will come handy in this case are XDocument and XmlDocument. XDocument is what…
Syntax: CREATE TABLE table_name ( id INT(20) NOT NULL AUTO_INCREMENT, name VARCHAR(32) NOT NULL DEFAULT ”, other INT(20) NOT NULL DEFAULT ‘0’, PRIMARY KEY (id), INDEX name (name) ) ENGINE=FEDERATED…
In PhoneGap, JavaScript in the Android WebView runs on the main thread along with where the Java execute method runs. This sometimes causes blocking issues in the application. PhoneGap has…