i inserted all the record in the database.
database type as
DOB datetime
Wedding day datetime
i have one button view.when i click that button all record should be displayed in the Grid View.
Grid view Button code as follows;
sql ="select Name,DOB,Mobileno,Weddingday,Email from BIrthDayWish where Active ='A' ORDER BY Name";
Dr = SCon.ReadSql(Sql);
GridView1.DataSource = Dr;
GridView1.DataBind();
GridView1.Visible = true;
output in Grid View as follows
Name DOB Mobile no Wedding day Email
ram 22/12/1986 12:00:00 AM 9945598565 22/12/2009 12:00:00 AM [email protected]
but i want the output in grid view related to DOB and Wedding day date to be shown as
Name DOB Mobile no Wedding day Email
ram 22/12/1986 9945598565 22/12/2009 [email protected]
Not needed a
DOB Wedding Day
12:00:00 AM 12:00:00 AM
sql ="select Name,DOB,Mobileno,Weddingday,Email from BIrthDayWish where Active ='A'
ORDER BY Name";
from my above query how to correct the query and get the output as follows
Name DOB Mobile no Wedding day Email
ram 22/12/1986 9945598565 22/12/2009 [email protected]
Akkiraju IvaturiPosted Dec 27, 2012, 10:34 AM
Though the CONVERT function has performance issues, but still it is negligible in this case and also gives you more flexibility to display dates in many formats.
For example, the following displays date in different format:
SELECT CONVERT(VARCHAR(10),GETDATE(),111)
2012/12/27
Ganesh MPosted Dec 27, 2012, 7:23 AM
sql ="select Name,CONVERT(varchar(15),DOB,103) as DOB,Mobileno,CONVERT(varchar(15),Weddingday,103) as Weddingday,Email from BIrthDayWish where Active ='A'
ORDER BY Name";