C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




How to convert a string to a required date format


Posted Date: 01 Aug 2008      Total Responses: 4

Posted By: Ferdin Sylvester M I       Member Level: Gold     Points: 1



Hi,
i assign a date value from the database to a string variable, when i display this string variable it contains the date and time ie "8/3/2008 12:00:00 AM" but i need to convert this string variable and display the date like "03 Aug 2008". How to convert the string variable into the required fromat...





Responses

Author: Koteswara Rao    01 Aug 2008Member Level: GoldRating:     Points: 2

TextBox1.Text = myDate.ToString("dd/MMMM/yy")


Author: ANIL PANDEY    01 Aug 2008Member Level: DiamondRating:     Points: 3

Hello Ferdin,

Use the Format function to convert the format of a string.

str.ToString("MM-DD-YYYY");

hope this will works for you!!!!!!


Anil Pandey!!!!!!

Thanks & Regards
Anil Kumar Pandey



Author: Sree Raj    01 Aug 2008Member Level: GoldRating:     Points: 3

hi

for solving this problem
in the select query ,convert the datetime value to dd-mmm-yy format using the parameter 13 or 113 .
\

Regards
SreeRaj



Author: Vidhya    01 Aug 2008Member Level: GoldRating:     Points: 4

hi,

System.IFormatProvider frmt = new
System.Globalization.CultureInfo("en-US", true);
DateTime dt = DateTime.ParseExact("03/29/06", "MM/dd/yy", frmt);
//You can specify your required Culture Info above...

if (dt.ToShortDateString()== DateTime.Now.ToShortDateString())
{
Response.Write("Same Date");
}

Happy programming!



Post Reply
You must Sign In to post a response.
Next : Companies in Pune
Previous : Advance search
Return to Discussion Forum
Post New Message
Category: BizTalk

Related Messages



dotNet Slackers   BizTalk Adaptors    Web Design


Contact Us    Privacy Policy    Terms Of Use