Most Intelligent
Software Engineer
Thursday, November 6, 2014
Disable Cut Copy Paste and Drop options in HTML and ASP.Net Using Java Script And JQuery
›
put below code in head tag. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery...
Disable Right Click in Asp.net Using Java Script
›
Disable Right Click Using Java Script <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat...
Monday, August 25, 2014
Implementing Caching in ASP.Net
›
http://www.c-sharpcorner.com/UploadFile/vishnuprasad2005/ImplementingCachinginASP.NET11302005072210AM/ImplementingCachinginASP.NET.aspx ...
Thursday, August 7, 2014
What is difference between Delete and Truncate in sql server
›
The DELETE command is used to remove rows from a table. A WHERE clause can be used to only remove some rows. TRUNCATE removes all ro...
Wednesday, August 6, 2014
Database normalization and Denormalization
›
Normalization. Database normalization is the process of organizing the fields and tables of a relational database to minimize redundancy. N...
Tuesday, August 5, 2014
Difference between Array and ArrayList
›
Arrays ArrayLists These are strong type collection and allow to store fixed length Array Lists are not strong type collection and...
What is the Difference between Class and Struct in C#
›
Class Class is a reference type and its object is created on the heap memory. Class can inherit the another class. Class can have the ...
Saturday, February 22, 2014
Sum of Salary group by Dept id Query
›
select u.DeptId,SUM(Salary) as TotSalary from tblUsers u group by u.DeptId tbl_Dept:-- DeptId int DeptName nvarchar(50) tbl...
Commit and Rollback Commands in SQL Server
›
Rollback and Commit are trans a ction statements that are called Data Control Language for SQL and are used to ensure the integrity of dat...
›
Home
View web version