What is a Sub domain?
In order to understand what a sub domain is, first let's look at a regular domain. Most domains look like the following; www.wordpress.com. Each domain refers to a specific site on the web and the search engines acknowledge each domain as a separate web site. While many domains have several web pages, each extra page is still considered the same site (for instance, www.wordpress.com/UserName).
While this is an easy way to add extra pages to your web site, for most web deve...
More
share our ideas
SQL datetime format
The following conversion options are available for sql datetime format :
select convert(char, getdate(), 100) -- mon dd yyyy hh:mmAM (or PM)
-- Oct 2 2008 11:01AM
select convert(char, getdate(), 101) -- mm/dd/yyyy
-- 10/02/2008
select convert(char, getdate(), 102) -- yyyy.mm.dd
-- 2008.10.02
select convert(char, getdate(), 103) -- dd/mm/yyyy
select convert(char, getdate(), 104) -- dd.mm.yyyy
select convert(char, getdate(), 105) -- dd-mm-yyyy
select convert(char, getdate(), 106) -- dd ...
More