Click here to Skip to main content
15,898,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionAjax tab container Pin
KhandelwalA21-Aug-09 22:23
KhandelwalA21-Aug-09 22:23 
AnswerRe: Ajax tab container Pin
Abhishek Sur22-Aug-09 12:10
professionalAbhishek Sur22-Aug-09 12:10 
QuestionLINQ DataContext Pin
RajeevKumarSharma21-Aug-09 21:58
RajeevKumarSharma21-Aug-09 21:58 
AnswerRe: LINQ DataContext Pin
Abhishek Sur22-Aug-09 12:08
professionalAbhishek Sur22-Aug-09 12:08 
QuestionDate format change to dd-mm-yyyy from mm/dd/yyyy Pin
Shinemon4021-Aug-09 21:49
Shinemon4021-Aug-09 21:49 
AnswerRe: Date format change to dd-mm-yyyy from mm/dd/yyyy Pin
Blue_Boy21-Aug-09 22:32
Blue_Boy21-Aug-09 22:32 
AnswerRe: Date format change to dd-mm-yyyy from mm/dd/yyyy Pin
Christian Graus22-Aug-09 1:37
protectorChristian Graus22-Aug-09 1:37 
AnswerRe: Date format change to dd-mm-yyyy from mm/dd/yyyy Pin
Gandalf_TheWhite22-Aug-09 2:56
professionalGandalf_TheWhite22-Aug-09 2:56 
Why you have to do this from asp code when you can do this from database if it comes from database
Use the below example.
just replace getdate() with your parameter

SELECT convert(varchar, getdate(), 103) – dd/mm/yyyy

SELECT convert(varchar, getdate(), 101) - mm/dd/yyyy

But the same thing you can do from you code this way.

DateTime todydate = new DateTime();
date.ToString("dd/mm/yyyy");
date.ToString("mm/dd/yyyy");

Believe Yourself™ Shucks | :-\

Questionfileupload.hasfile always return false ??? Pin
Priyagdpl21-Aug-09 21:41
Priyagdpl21-Aug-09 21:41 
AnswerRe: fileupload.hasfile always return false ??? Pin
Blue_Boy21-Aug-09 22:35
Blue_Boy21-Aug-09 22:35 
AnswerRe: fileupload.hasfile always return false ??? Pin
Abhijit Jana21-Aug-09 23:12
professionalAbhijit Jana21-Aug-09 23:12 
AnswerRe: fileupload.hasfile always return false ??? Pin
Abhishek Sur22-Aug-09 11:43
professionalAbhishek Sur22-Aug-09 11:43 
GeneralRe: fileupload.hasfile always return false ??? Pin
Priyagdpl26-Aug-09 0:40
Priyagdpl26-Aug-09 0:40 
QuestionSkin file vs CSS file Pin
nagendrathecoder21-Aug-09 20:55
nagendrathecoder21-Aug-09 20:55 
AnswerRe: Skin file vs CSS file Pin
Seraph_summer22-Aug-09 7:37
Seraph_summer22-Aug-09 7:37 
AnswerRe: Skin file vs CSS file Pin
Abhishek Sur22-Aug-09 12:12
professionalAbhishek Sur22-Aug-09 12:12 
AnswerRe: Skin file vs CSS file Pin
nagendrathecoder23-Aug-09 23:59
nagendrathecoder23-Aug-09 23:59 
QuestionContinue the background process on postbacks Pin
M. J. Jaya Chitra21-Aug-09 20:37
M. J. Jaya Chitra21-Aug-09 20:37 
AnswerRe: Continue the background process on postbacks Pin
r a m e s h21-Aug-09 23:07
r a m e s h21-Aug-09 23:07 
AnswerRe: Continue the background process on postbacks Pin
devilidea23-Aug-09 1:19
devilidea23-Aug-09 1:19 
GeneralRe: Continue the background process on postbacks Pin
M. J. Jaya Chitra23-Aug-09 16:59
M. J. Jaya Chitra23-Aug-09 16:59 
QuestionSuggestion??? Pin
Jagz W21-Aug-09 20:25
professionalJagz W21-Aug-09 20:25 
AnswerRe: Suggestion??? Pin
Abhijit Jana21-Aug-09 20:37
professionalAbhijit Jana21-Aug-09 20:37 
Questionhow to use IIS and send emails! Pin
paras.nitk21-Aug-09 19:10
paras.nitk21-Aug-09 19:10 
AnswerRe: how to use IIS and send emails! Pin
Abhijit Jana21-Aug-09 19:42
professionalAbhijit Jana21-Aug-09 19:42 

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.