Rajneesh Verma's Blog
.NET MVC Learner..
Sign in
|
Join
Home
Contact
RSS
Atom
Comments RSS
Search
Tags
.NET
AJAX
ASP.NET
ASP.NET Support Team
Community News
DateTime
General Software Development
Globalization
Javascript
JQuery
LINQ
Localization
Microsoft
Microsoft Community Contributor Award
Setup and Deployment
Silverlight
SQL Server
UK and US Date
Visual Studio
Visual Studio 2008
Visual Studio 2010
Windows.net
WPF
Sponsors
advertise here
News
Rajneesh Verma
Navigation
Home
Blogs
Archives
April 2013 (1)
February 2013 (1)
December 2012 (1)
September 2012 (1)
October 2011 (1)
September 2011 (1)
June 2011 (1)
May 2011 (1)
April 2011 (1)
March 2011 (1)
February 2011 (3)
January 2011 (3)
December 2010 (2)
November 2010 (3)
Favorite Links
Scott Gu's Blog
My Profile
Myself at ASP.NET
Myself at MSDN
November 2010 - Posts
0
Comments
Calculate Age in Years, Months and Days from Date of Birth
by
Rajneesh Verma
Easily you can get Age from date of birth using SQL query as below: DECLARE @ date datetime, @tmpdate datetime, @years int , @months int , @days int SELECT @ date = '10/25/1981' SELECT @tmpdate = @ date SELECT @years = DATEDIFF(yy...
Filed under:
SQL Server
2
Comments
Get all dates between two dates
by
Rajneesh Verma
As for question if i want to get all dates between two dates. For example i want all dates between 01/jan/2010 and 31/Dec/2010 we need to write SQL Query as below: DECLARE @StartDate DATETIME, @EndDate DATETIME SELECT @StartDate ...
Filed under:
SQL Server
7
Comments
ASP.NET Popup Login control using DIV and CSS
by
Rajneesh Verma
This is my first blog. is there any mistake please forgive me. As i have seen that most people ask for Popup Login control in ASP.NET to achieve this their are number of ways but simplest method is to use DIV and CSS. First create login control in ASP...
Filed under:
ASP.NET
,
.NET
,
Visual Studio 2008
,
Visual Studio 2010
,
Visual Studio
More Posts