I have a asp Text box as where the user will fill only a year value, For this value I have Datetime type Property in c# application and Date type column in DB. So I want to convert that txtYear.Text to DateTime But it will only hold and/or show the year. Please help me in this situation.

link|improve this question

79% accept rate
4  
When you need only the year why store it as DateTime at all – V4Vendetta Jul 4 '11 at 11:53
feedback

7 Answers

up vote 4 down vote accepted

A DateTime object will always hold a complete DateTime value, you can't use it to store a year only. (what use would that be anyway?) Besides, the datatype of a "year" is int, not DateTime.

So, I'd like to suggest changing your property to datatype int, both in your code and database.

link|improve this answer
Thnx Nico, I will change the type both in app ans db – Pankouri Jul 4 '11 at 11:54
You're welcome! – Nico Beemster Jul 4 '11 at 12:04
feedback

A DateTime always has a full date component. When you create the DateTime instance, you'll need to assign a month and day, but you can ignore them in your usage.

DateTime d = new DateTime(int.Parse(txtYear.Text, 1, 1);

txtYear.Text = d.ToString("yyyy"); 

Even better would be not to use a DateTime but just use int. If you have only a year, you only need an int.

link|improve this answer
feedback

To display just the year use the format "yyyy".

        string s = "2011";
        DateTime d = new DateTime(int.Parse(s), 1, 1);


        Console.WriteLine(d.ToString("yyyy"));
        Console.WriteLine(d);
link|improve this answer
Thanks for this Bypass Solution. – Pankouri Jul 4 '11 at 12:03
feedback

Rather than applying any string manipulating function make use of Year property. Check the documentation on the msdn by visiting below link.

DateTime.Year Property

link|improve this answer
feedback

If you want only the year, why don't you make it of type smallint?

Anyway if you do really want to make it an year,

DateTime x = new DateTime(Convert.ToInt32(txtYear.text), 1, 1);

But make sure you validate that txtYear.text actually does have a valid year.

link|improve this answer
feedback

i assume the text box name is txYear

DateTime dt = new DateTime (Convert.ToInt32(txYear.text),1,1)

save this dt value in database

link|improve this answer
thanx for this Bypass solution, I was looking for this. but from all the answers I come to conclusion that I should change the type to int or smallint, which is more convenient to deal with. – Pankouri Jul 4 '11 at 11:56
:) yes using as integer is better idea,but when u using datetime type you can use sql builtin function for manipulating datetime – DeveloperX Jul 4 '11 at 12:00
feedback

You have to specify the format of the DateTime value you are manipulating:

String dateTimeFormat = "yyyy";

To show only a part of the DateTime value use the following:

dateTimeValue.ToString(dateTimeFormat);

To read a String value that represents a year into a DateTime use the following:

DateTime.ParseExact(stringValue, dateTimeFormat, CultureInfo.InvariantCulture);

DateTime.ParseExact Method (String, String, IFormatProvider) converts the specified string representation of a date and time to its DateTime equivalent using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly.

DateTime.ToString Method converts the value of the current DateTime object to its equivalent string representation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.