Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NET
DateTime datenow = DateTime.Now;
int age=0;
age =Convert.ToInt32(ddlyear.SelectedItem.Text).ToString();
int result = 0;
result =Convert.ToDateTime(datenow).ToString() - Convert.ToInt32(age).ToString();
txtage.Text = result.ToString();
Posted 12 Jan '13 - 20:19
Edited 12 Jan '13 - 20:51

Comments
jibesh - 13 Jan '13 - 2:41
what are you trying to do? calculate the age difference?
Dharmendra-18 - 13 Jan '13 - 2:44
can you elaborate your question for better solution.

3 solutions

It looks like your trying to get the age in years using DateTime.Now and the birth date.
 
This will do just that.
 
DateTime today = DateTime.Today;
 
int calc1 = (today.Year * 100 + today.Month) * 100 + today.Day;
int calc2 = (dateOfBirth.Year * 100 + dateOfBirth.Month) * 100 + dateOfBirth.Day;
 
int ageInYears = (a - b) / 10000;
 
txtage.Text = ageInYears.ToString();
 
But since the title of your question is "How i convert dataetime to int and string to Int" this is the following
 
//Convert DateTime To String
DateTime now = DateTime.Now;
string nowString = now.ToShortDateString();
//Convert String To Int
int value1 = 22;
string value1Converted = value1.ToString();
  Permalink  
The code has serious issues it wont even compile.You are totally confused with the conversions. I would suggest understand the basics of assignment operations too.
 
you are trying to store a string data into an integer variable 'age' at the following location which is wrong you never store a string into an int.
//wrong code
age =Convert.ToInt32(ddlyear.SelectedItem.Text).ToString(); //compiler error
//Correct Code
age = Convert.ToInt32(ddlyear.SelectedItem.Text); // is enough

//this code also throws compiler error, 
result =Convert.ToDateTime(datenow).ToString() - Convert.ToInt32(age).ToString();
 
Try this
DateTime now = DateTime.Today;
int age = now.Year - bday.Year;
if (bday > now.AddYears(-age)) age--;
calculate-the-difference-between-two-dates-and-get-the-value-in-years[^]
  Permalink  
Your code is rather weird.
You seem to have little understanding of the C# type system[^].
 
You seem to try to calculate a start date/time by subtract some "age" from "now".
What is "age"? seconds, minutes, hours, days, weeks, monts, years, centuries, mayan-cycles Wink | ;-) ...?
 
Anyways: when calculating with times, you need to understand the difference between
- a point in time (like "now", "yesterday", "last year", etc.)
- and a duration (like "1 hour", "20 years", etc.).
 
Durations can be added/subtracted from each other, resulting in a new duration.
Adding/subtracting two points in dime result in a durations.
Adding/subtracting a duration to/from a point in time gives a new point in time.
 
DateTime denotes a point in time.
TimeSpan denotes a duration.
 
In your code, I assume "age" to be a duration.
1) set the point in time variable "now" to DateTime.Now
2) parse the "duration" input text into a TimeSpan (you need to decide on the right unit)
3) subtract the "duration" from "now"
4) convert the result to the desired point in time format (e.g. year only) and assign that to your text output variable
 
Cheers
Andi
 
PS: Strongly recommend to use TryParse(...) instead of any Convert.XXX(...) or Parse(...) methods. Reason: user input is potentially broken.
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 425
1 OriginalGriff 330
2 Arun Vasu 253
3 Zoltán Zörgő 194
4 CPallini 173
0 Sergey Alexandrovich Kryukov 10,105
1 OriginalGriff 7,739
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 2,999


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 13 Jan 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid