Click here to Skip to main content
15,884,978 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Inserting date Pin
Kunal P15-Feb-07 3:45
Kunal P15-Feb-07 3:45 
AnswerRe: Inserting date Pin
badgrs15-Feb-07 3:51
badgrs15-Feb-07 3:51 
AnswerRe: Inserting date Pin
R.Palanivel15-Feb-07 4:14
R.Palanivel15-Feb-07 4:14 
GeneralRe: Inserting date Pin
Colin Angus Mackay15-Feb-07 4:41
Colin Angus Mackay15-Feb-07 4:41 
QuestionRe: Inserting date Pin
Kunal P15-Feb-07 5:00
Kunal P15-Feb-07 5:00 
AnswerRe: Inserting date Pin
badgrs15-Feb-07 5:34
badgrs15-Feb-07 5:34 
QuestionRe: Inserting date Pin
Kunal P17-Feb-07 3:18
Kunal P17-Feb-07 3:18 
AnswerRe: Inserting date Pin
badgrs18-Feb-07 0:37
badgrs18-Feb-07 0:37 
Kunal P wrote:
Label1.Text = "" + dread["dt"].ToString();


If you look in the documentation you'll see the ToString method is overloaded (has several different methods with different parameters). You can feed is a string format like this: (and you don't need the initial blank string - that just creates another object to be cleaned up by the GC)

Label1.Text = dread["dt"].ToString("dd/MM/yyyy");

You'll probably find you need to cast it to a DateTime object first:
Label1.Text = ((DateTime)dread["dt"]).ToString("dd/MM/yyyy");


This documents the possible formating strings:
Custom DateTime Format Strings
GeneralRe: Inserting date Pin
Kunal P19-Feb-07 1:35
Kunal P19-Feb-07 1:35 
QuestionExtending MasterPage Pin
Taurian11015-Feb-07 3:03
Taurian11015-Feb-07 3:03 
AnswerRe: Extending MasterPage Pin
Not Active15-Feb-07 4:25
mentorNot Active15-Feb-07 4:25 
GeneralRe: Extending MasterPage Pin
Taurian11015-Feb-07 7:49
Taurian11015-Feb-07 7:49 
Questionweb based data analysis tool for stocks Pin
tota123415-Feb-07 2:55
tota123415-Feb-07 2:55 
QuestionLost input values in formview when cancel insert command. Pin
JimFeng15-Feb-07 2:54
JimFeng15-Feb-07 2:54 
Questionretreiving data in dropbox Pin
Kunal P15-Feb-07 2:48
Kunal P15-Feb-07 2:48 
AnswerRe: retreiving data in dropbox Pin
Not Active15-Feb-07 4:22
mentorNot Active15-Feb-07 4:22 
QuestionRe: retreiving data in dropbox Pin
Kunal P17-Feb-07 3:06
Kunal P17-Feb-07 3:06 
AnswerRe: retreiving data in dropbox Pin
Not Active17-Feb-07 5:54
mentorNot Active17-Feb-07 5:54 
QuestionRe: retreiving data in dropbox Pin
Kunal P17-Feb-07 21:48
Kunal P17-Feb-07 21:48 
QuestionServer Error Pin
Sarfaraj Ahmed15-Feb-07 2:15
Sarfaraj Ahmed15-Feb-07 2:15 
QuestionFCKEditor-File Uploading-Preview Problem Pin
adnanrafiq15-Feb-07 1:50
adnanrafiq15-Feb-07 1:50 
QuestionAjax error: problem displaying Label in UpdatePanel Pin
FionaDM15-Feb-07 1:47
FionaDM15-Feb-07 1:47 
QuestionHelp Pin
legend_of_zanado15-Feb-07 1:00
legend_of_zanado15-Feb-07 1:00 
AnswerRe: Help Pin
Sylvester george15-Feb-07 2:30
Sylvester george15-Feb-07 2:30 
QuestionHelp Pin
legend_of_zanado15-Feb-07 0:58
legend_of_zanado15-Feb-07 0:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.