Information

Wednesday, September 5, 2012

Getting subject added to the mailto command

›
<a href="mailto:test@example.com?subject=testing%20out%20mailto&body=Just%20testing">Second Example</a> Example ...
Saturday, April 14, 2012

how to add A DAY IN DATE, SQL-SERVER

›
DATEADD ( type , value , date ) date is the date you want to manipulate value is the integere value you want to add (or subtract if yo...
Thursday, May 26, 2011

What is the difference between abstraction and encapsulation?

›
Abstraction: Abstraction lets you focus on what the object does instead of how it does it That means we use the object without knowing t...
Wednesday, May 18, 2011

What is the difference between classes and structs in Microsoft.Net?

›
A struct is a value type, while a class is a reference type. When we instantiate a class, memory will be allocated on the heap. When st...
Saturday, May 14, 2011

Sql-Server, find Duplicate Rows with Count

›
select Count(ID), Name, Email,Comment FROM TableName      group by Name, Email,Comment having Count(ID)>1
Saturday, March 26, 2011

How to use cufon.replace inside UpdatePanel?

›
Place below code inside Update Panel   < script type = " text /javascript" language = "javascript" >   Sys ...
Saturday, March 12, 2011

how can I jump to the top of page using UpdatePanel?

›
< script type = " text /javascript" language = "javascript" >   Sys . WebForms . PageRequestManager . getInst...
Monday, March 7, 2011

Difference between JOIN and INNER JOIN

›
SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK OR SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTabl...
Monday, October 18, 2010

Sql - server - Find Last updated stored procedures

›
SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' ORDER BY modify_date desc, create_date desc
Wednesday, October 6, 2010

SQL-Server - Generalized Paging Query That Includes Sorting Clauses

›
SELECT TOP page_size * FROM table WHERE primary_key NOT IN (SELECT TOP page_size * (page_number - 1) primary_key FROM table WHERE fi...
‹
›
Home
View web version
Powered by Blogger.