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.
|
feedback
|
|
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. | |||||
|
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.
Even better would be not to use a DateTime but just use int. If you have only a year, you only need an int. | |||
|
feedback
|
|
To display just the year use the format "yyyy".
| |||
|
feedback
|
|
Rather than applying any string manipulating function make use of Year property. Check the documentation on the msdn by visiting below link. | |||
|
feedback
|
|
If you want only the year, why don't you make it of type Anyway if you do really want to make it an year,
But make sure you validate that | |||
|
feedback
|
|
i assume the text box name is txYear
save this dt value in database | |||||
feedback
|
|
You have to specify the format of the
To show only a part of the
To read a
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. | ||||
|
feedback
|
DateTimeat all – V4Vendetta Jul 4 '11 at 11:53