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…
In SQL Server, there is a cool functionality by which you can get the modified data as a result set. Suppose there is a table containing rating information about any…
Most of us have encountered situations like splitting delimited string in a column of a table in SQL SERVER. The very first idea we get is to build a TABLE VALUED…
Rebuilding an Index Rebuilding an index means dropping an existing index and creating a new one. Any fragmentation that was in the older index ie deleted with the drop and…
3. Third difference can be found when the query returns more than one value. In this case , SET would return an error. For instance,the following code: Declare @Year_of_PassOut int SET @Year_of_PassOut= (SELECT…
// get text file path from application bundle. _string_filePath = pathForResource:@”fileName” ofType:@”txt”]; // get the contents of file. _string_myFileText = ; // pass the range of text within which the search has to…
Some times we may encounter situations like getting the data from data base with numerous parameters which become optional based on the conditions. For example , Case 1. Get All…
If you want to access an web service from a website which is SSL enabled (used HTTPS), you have to download SSL certificate from the SSL enabled website and install…
Yield is a keyword which is used to get list of items from a loop. The method implementing yield keyword returns an enumerable object.Yield retains the state of the method…
Sometimes we need to audit all DML operations for tables in a MSSQL database. There are many methods for achieving this, one of the most common approaches is using DML Triggers…