Click here to Skip to main content
15,917,062 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to find all Created Items in a Repeater Pin
-Muc_29-Apr-10 22:27
-Muc_29-Apr-10 22:27 
GeneralRe: How to find all Created Items in a Repeater Pin
Abhishek Sur30-Apr-10 0:00
professionalAbhishek Sur30-Apr-10 0:00 
GeneralRe: How to find all Created Items in a Repeater Pin
-Muc_30-Apr-10 0:23
-Muc_30-Apr-10 0:23 
GeneralRe: How to find all Created Items in a Repeater Pin
-Muc_30-Apr-10 4:28
-Muc_30-Apr-10 4:28 
GeneralRe: How to find all Created Items in a Repeater Pin
Abhishek Sur30-Apr-10 5:49
professionalAbhishek Sur30-Apr-10 5:49 
QuestionFailed to find or load the registered .Net Framework Data Provider Pin
reogeo200829-Apr-10 21:19
reogeo200829-Apr-10 21:19 
AnswerRe: Failed to find or load the registered .Net Framework Data Provider Pin
Abhishek Sur29-Apr-10 21:52
professionalAbhishek Sur29-Apr-10 21:52 
QuestionI want to trigger an event of page (b) from page (a). How do I do that? Pin
tamilpuyal_2829-Apr-10 20:35
tamilpuyal_2829-Apr-10 20:35 
AnswerRe: I want to trigger an event of page (b) from page (a). How do I do that? Pin
Abhijit Jana29-Apr-10 20:45
professionalAbhijit Jana29-Apr-10 20:45 
AnswerRe: I want to trigger an event of page (b) from page (a). How do I do that? Pin
Abhishek Sur29-Apr-10 21:58
professionalAbhishek Sur29-Apr-10 21:58 
Questionhttp Basic authentication(RFC2617) Pin
kunaltilak29-Apr-10 20:28
kunaltilak29-Apr-10 20:28 
AnswerRe: http Basic authentication(RFC2617) Pin
SeMartens29-Apr-10 20:53
SeMartens29-Apr-10 20:53 
AnswerRe: http Basic authentication(RFC2617) Pin
kunaltilak29-Apr-10 21:46
kunaltilak29-Apr-10 21:46 
GeneralRe: http Basic authentication(RFC2617) Pin
kunaltilak2-May-10 19:55
kunaltilak2-May-10 19:55 
QuestionIIS cache issue Pin
Abbas_here29-Apr-10 20:11
Abbas_here29-Apr-10 20:11 
QuestionDateTime Problem Pin
Amit Patel198529-Apr-10 20:01
Amit Patel198529-Apr-10 20:01 
AnswerRe: DateTime Problem Pin
Jamil Hallal29-Apr-10 20:09
professionalJamil Hallal29-Apr-10 20:09 
AnswerRe: DateTime Problem [modified] Pin
An Ha Ja29-Apr-10 20:10
An Ha Ja29-Apr-10 20:10 
AnswerRe: DateTime Problem Pin
Dinesh Mani29-Apr-10 20:17
Dinesh Mani29-Apr-10 20:17 
I assume you want to display 5/13/2010 as 13-May-2010 and not 08-May-2010. Its very easy to do it. If you are displaying the date in a label then you are probably assigning the date value to the text property like this

Label1.Text = DateTimeValue.ToString();.

Now to apply formatting in this case just pass the format string as parameter to the ToString() function like this

Label1.Text = DateTimeValue.ToString("dd-MMM-yyyy");


You could also use this String.Format("{0:dd-MMM-yyyy}", DateTimeValue.ToString());


NOTE - Month should be specified as "MMM" and not "mmm".

For more format strings refer this page - String Format for DateTime [C#][^]
AnswerRe: DateTime Problem Pin
Amit Patel198529-Apr-10 20:22
Amit Patel198529-Apr-10 20:22 
AnswerRe: DateTime Problem Pin
Arindam Tewary29-Apr-10 20:39
professionalArindam Tewary29-Apr-10 20:39 
Questiontimer control in ajax Pin
souravghosh1829-Apr-10 19:07
souravghosh1829-Apr-10 19:07 
AnswerRe: timer control in ajax Pin
Abhijit Jana29-Apr-10 19:45
professionalAbhijit Jana29-Apr-10 19:45 
GeneralRe: timer control in ajax Pin
souravghosh1829-Apr-10 21:53
souravghosh1829-Apr-10 21:53 
GeneralRe: timer control in ajax [modified] Pin
Abhijit Jana29-Apr-10 22:47
professionalAbhijit Jana29-Apr-10 22:47 

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.