Click here to Skip to main content
15,891,904 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: not getting text in hindi Pin
Aman Bhullar12-Jan-09 21:36
Aman Bhullar12-Jan-09 21:36 
GeneralRe: not getting text in hindi Pin
Rahul DSG20-Jan-09 18:00
Rahul DSG20-Jan-09 18:00 
GeneralRe: not getting text in hindi Pin
Aman Bhullar21-Jan-09 5:42
Aman Bhullar21-Jan-09 5:42 
GeneralRe: not getting text in hindi Pin
Rahul DSG21-Jan-09 18:00
Rahul DSG21-Jan-09 18:00 
Questiondd/mm/yyyy to mm/dd/yyyy format Pin
Member 387988112-Jan-09 18:02
Member 387988112-Jan-09 18:02 
AnswerRe: dd/mm/yyyy to mm/dd/yyyy format Pin
Abhijit Jana12-Jan-09 18:10
professionalAbhijit Jana12-Jan-09 18:10 
GeneralRe: dd/mm/yyyy to mm/dd/yyyy format Pin
Member 387988112-Jan-09 18:15
Member 387988112-Jan-09 18:15 
AnswerRe: dd/mm/yyyy to mm/dd/yyyy format Pin
scotchy2hotty2k212-Jan-09 18:27
scotchy2hotty2k212-Jan-09 18:27 
string date = textBox1.Text;
DateTimeFormatInfo dateTimeFormatterProvider = DateTimeFormatInfo.CurrentInfo.Clone() as DateTimeFormatInfo;
dateTimeFormatterProvider.ShortDatePattern = "dd/MM/yyyy";
DateTime dateTime = DateTime.Parse(date, dateTimeFormatterProvider);
string formatted = dateTime.ToString("MM/dd/yyyy");
response.write(formatted);

I hope this resolves ur problem
GeneralRe: dd/mm/yyyy to mm/dd/yyyy format Pin
Abhijit Jana12-Jan-09 18:29
professionalAbhijit Jana12-Jan-09 18:29 
GeneralRe: dd/mm/yyyy to mm/dd/yyyy format Pin
mr_muskurahat12-Jan-09 20:55
mr_muskurahat12-Jan-09 20:55 
GeneralRe: dd/mm/yyyy to mm/dd/yyyy format Pin
bVagadishnu13-Jan-09 11:30
bVagadishnu13-Jan-09 11:30 
QuestionSignout not working Pin
scotchy2hotty2k212-Jan-09 17:53
scotchy2hotty2k212-Jan-09 17:53 
AnswerRe: Signout not working Pin
Rajeesh MP12-Jan-09 18:05
Rajeesh MP12-Jan-09 18:05 
GeneralRe: Signout not working [modified] Pin
scotchy2hotty2k212-Jan-09 19:12
scotchy2hotty2k212-Jan-09 19:12 
GeneralRe: Signout not working Pin
Rajeesh MP13-Jan-09 2:13
Rajeesh MP13-Jan-09 2:13 
Question3 tier project Pin
Leona T12-Jan-09 17:41
Leona T12-Jan-09 17:41 
AnswerRe: 3 tier project Pin
Abhijit Jana12-Jan-09 17:46
professionalAbhijit Jana12-Jan-09 17:46 
QuestionGet Previous month and year Pin
codelinks12-Jan-09 17:04
codelinks12-Jan-09 17:04 
AnswerRe: Get Previous month and year Pin
Reza Raad12-Jan-09 17:20
Reza Raad12-Jan-09 17:20 
GeneralRe: Get Previous month and year Pin
codelinks12-Jan-09 17:21
codelinks12-Jan-09 17:21 
GeneralRe: Get Previous month and year Pin
Not Active12-Jan-09 17:23
mentorNot Active12-Jan-09 17:23 
AnswerRe: Get Previous month and year Pin
Not Active12-Jan-09 17:21
mentorNot Active12-Jan-09 17:21 
QuestionProblem with XP os.. Pin
sarang_k12-Jan-09 15:13
sarang_k12-Jan-09 15:13 
AnswerRe: Problem with XP os.. Pin
Reza Raad12-Jan-09 17:29
Reza Raad12-Jan-09 17:29 
AnswerRe: Problem with XP os.. Pin
Abhijit Jana12-Jan-09 17:29
professionalAbhijit Jana12-Jan-09 17:29 

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.