assign date to TextBox textmode="date" using code - c#

when i assign the date to textBox of textmode= "date" ,it doesn't display and displays "mm/dd/yyy" although the textBox has the correct date in debugging and autopostBack is enabled .
DataTable dt= DepartMentDB.GetDepartmentById(ddlDepartment.SelectedValue.ToString());
string Managername = dt.Rows[0]["Dept_Manager"].ToString();
DateTime d = DateTime.Parse(dt.Rows[0]["Manager_hiredate"].ToString());
txtHiredate.Text = d.ToString("mm/dd/yyy");

You want "MM/dd/yyy" (notice the capital M. otherwise it would convert to minutes once its working). If it's still not working, use an invariant culture to force the conversion (since you are specifying the format directly). i.e.:
txtHiredate.Text = d.ToString("MM/dd/yyy", CultureInfo.InvariantCulture);
EDIT: Actually, it is because the textmode of date only support a specific format. Mainly yyyy-MM-dd or whatever the user specified in their culture settings. See https://stackoverflow.com/a/22747762/3419825
So either work with the text mode and go with yyyy-MM-dd, or remove the textmode, or use a framework like jQuery to add a mask

Cast your value to DateTime object

Related

C# Date Time Picker to Text?

Im trying to get a text from a file into date format for a label.
What i currently have works great for a DateTimePicker however im wanting to now use a label to display the date rather than a DateTimePicker.
This is what currently works when getting the value to a DateTimePicker:
dateTimeMFR.Value = this.myKeyVault.MFRDate;
and this is what im attempting to make work in a label:
DateTimePicker myDate = new DateTimePicker();
myDate.Value = myKeyVault.MFRDate;
txtMFR.Text = myDate.Text;
Thanks for any help on the matter.
It depends on the format which you want to show the date in. If it should be default user format, then this:
txtMFR.Text = myKeyVault.MFRDate.ToString();
is sufficient.
You can also manually format DateTime as date or time by calling ToShortTimeString or ToShortDateString or combinations of them. Or you can provide one of the predefined string formats as explained here or here. For example:
txtMFR.Text = myKeyVault.MFRDate.ToString("T");
I don't understand why are you not just calling DateTime.ToString.
txtMFR.Text = myKeyVault.MFRDate.ToString();
If you want custom format, you can specify it like this
txtMFR.Text = myKeyVault.MFRDate.ToString("yyyy MMM dd HH:mm:ss");
First pick the format you would like to display it as:
http://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx
Then do:
txtMFR.Text = myKeyVault.MFRDate.ToString([put your selected format here]);
label1.Text = dateTimePicker1.Value.ToShortDateString();
This will do it.

Convert UK date format to American

I have a JQuery date picker which puts the date into a textbox in format DD/MM/YYYY.
I am trying to store this in SQL Server 2008 which needs to accept the date as MM/DD/YYYY, how should I format the date to get this to work correctly?
This is the code to add a my parameter to the query, which causes an error as the day and the month are the wrong way round
TextBox fixtureDateTextBox = (TextBox)Master.FindControl("ContentPlaceHolderMenu").FindControl("datepicker");
SqlParameter fixtureDateParam = new SqlParameter("#fixtureDate", fixtureDateTextBox.Text);
Never, ever directly insert input text into a parameter as you're doing - it's the root cause of too many security vulnerabilities and holes. Parse the input into a DateTimeOffset object first (you can also use DateTime, but the Offset is better in general to use) by calling DateTimeOffset.Parse(...), then you can simply add it as a parameter without modifying it.
EDIT: I re-read your question, and realized that while the above isn't wrong, it does miss some important things that address your question. See this for how to configure the date picker to display an alternate date format from what it stores in an alternate field:
EDIT 2:
You'll want to parse your DateTime object using the overload which allows you to pass in an IFormatProvider instance.
See http://msdn.microsoft.com/en-us/library/system.iformatprovider.aspx for an example of how to do what you're looking to do. Otherwise, DateTime.Parse('13/3/2013') will fail due to unrecognized format.
DateTime.Parse('13/3/2013', new CultureInfo("en-GB").DateTimeFormat) is what you want to do with the input box.
I agree with the other folks that you should be able to configure the JQuery picker format to begin with, but if you can't, this should do the trick:
TextBox fixtureDateTextBox = (TextBox)Master.FindControl("ContentPlaceHolderMenu").FindControl("datepicker");
DateTime fixtureDate = DateTime.Parse(fixtureDateTextBox.Text, new CultureInfo("en-GB"));
SqlParameter fixtureDateParam = new SqlParameter("#fixtureDate", fixtureDate.ToString(new CultureInfo("en-US"));
Try this:
TextBox fixtureDateTextBox = (TextBox)Master.FindControl("ContentPlaceHolderMenu").FindControl("datepicker");
DateTime date = DateTime.Parse(fixtureDateTextBox.Text);
SqlParameter fixtureDateParam = new SqlParameter("#fixtureDate", date);
Add in the namespaces section: using System.Globalization;
then parse your input date as follows:
string DB_Date = (DateTime.Parse(fixtureDateTextBox.Text)).ToString(new CultureInfo("en-US"));
DateTime UKDate = Convert.ToDateTime(datepicker.Text);<br>
string usDate= UKDate.ToString("dd-MM-yyyy");<br>
SqlParameter fixtureDateParam = new SqlParameter("#fixtureDate", usDate);

How to convert MM/dd/yyyy to yyyy/MM/dd in C# using globalization

I have a text box in which a user is supposed to enter a date in MM/dd/yyyy format. This date is stored as yyyy/MM/dd in the database.
I want the user to enter the date in MM/dd/yyyy format and later I want to convert it to yyyy/mm/dd so that I can query the database.
How can I convert the user input date MM/dd/yyyy to yyyy/mm/dd?
If you're certain of the input string's format, use DateTime.ParseExact specifying "MM/dd/yyyy", then return the DateTime using .ToString with the appropriate "yyyy/MM/dd" format string.
There's no need to reference anything in the System.Globalization namespace for this.
That said, your database should be storing dates with a datetime format, rather than a string, in which case the format doesn't matter as your DBMS should do the conversion for you.
You can parse the date and format the result:
string str = Date.Parse(myDate).ToString("yyyy/MM/dd");
Alternatively, if the current culture doesn't support that date format and you've already validated the input:
string items[] = myDate.Split('/');
string str = items[2] + "/" + items[0] + "/" + items[1];
When you said globalization, I assume you want the change to be automatic according to current culture
You can setup culture (at Global.asax.cs I suggest)
System.Threading.Thread.CurrentThread.CurrentCulture = System.Threading.Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("the culture you want to set"); //
you do not need to touch any datetime thing, it just happened when you output them.
One thing is not the other.
Not sure why you want to insist on the text entered being MM/dd/yyyy, or why you haven't used a date time picker to make sure it is a date.
But at the point you get the content of the textbox as a date, parse it based on globalisation, or a set of acceptable formats. Now it is a date, and assuming it's a date in the database, format is irrelevant until you come to populate the text box, with some content from the DB, inwhich case you use DateTime's ToString method witha globalisation parameter, usually CultureInfo.CurrentCulture, or if you've got away with it CultureInfo.InvariantCulture.
If it's a string in the DB, then this is the least of your problems.
They key point is if you use dates properly, format is only relevant for Parse, and ToString type methods.
i am using
IFormatProvider culture=new CultureInfo("en-GB",true);
sqlcommand cmd=new sqlcommand("query",con);
cmd.Parameters.AddWithValue("#date",DateTime.Parse(txtdate.Text.Trim(),culture,DateTimeStyles.NoCurrentDateDefault).Date);
for this to work the format property must be set to dd/MM/yyyy
and text box read only property must be false

How to make DateTime independent from the current culture?

I cam trying to convert a datetime to string and back, but making it so that it works for all cultures.
I basically have a Textbox (tbDateTime) and a label (lbDateTime). The label tells the user, in which format the software expects the input of tbDateTime. The input of the Textbox will be used for an MySQL command.
Currently it works like this:
lbDateTime.Text = "DD.MM.YYYY hh:mm:ss"; // I live in germany
DateTime date = Convert.ToDateTime(tbDateTime.Text);
String filter = date.ToString("yyyy-MM-dd HH:mm:ss");
Now my question:
Is it possible to determine the format-string for lbDateTime.Text based on the current culture?
Which format does the Convert.ToDateTime function uses?
I hope you can help me. I have actually no pc here to test different cultures, so I'm very afraid that I make something wrong.
Instead of using the Convert.ToDateTime method you can use the DateTime.Parse or DateTime.ParseExact methods. Both allow you to pass a culture that tells how you expect the date to be formatted.
The DateTime.ParseExact method also allows you to specify the format you expect, so you can parse more or less any format with this method.
Edit:
Regarding Convert.ToDateTime. The documentation says that the current culture is used when parsing: http://msdn.microsoft.com/en-us/library/xhz1w05e.aspx
The current culture can be found using the System.Threading.Thread.CurrentThread.CurrentCulture property.
Edit2:
Oh. You may also want to use DateTime.TryParse and DateTime.TryParseExact if you are unsure whether the given format is invalid.
Edit3:
Lots of edits here... I see that you want to determine the culture string that matches the date the user has entered. There is no general solution that is guaranteed to work here. Say for instance that the user has entered the date 01.02.11. There is no way to be certain if this date is in day.month.year or month.day.year or year.month.day and so on.
The best you can do is to have a list of expected input cultures and start with the most likely and try to parse the date using that. If that fails, you can try the second most likely and so on...
But this is really not recommended. Either give the user an expected format, or better, use a date input box that ensures that you receive the selected date in an appropriate format.
The Convert.ToDateTime method will call DateTime.Parse to parse the string, using the current culture (CultureInfo.Current).
You can specify a culture when parsing the string. Example:
DateTime data = DateTime.Parse(tbDateTime.Text, new CultureInfo("en-GB"));
You can use DateTime.ParseExact (or DateTime.TryParseExact) to parse the string using a custom date format. Example:
DateTime data = DateTime.ParseExact(tbDateTime.Text, "dd'.'MM'.'yyyy HH':'mm':'ss", CultureInfo.InvariantCulture);
Another solution :
// Specify the current language (used in the current system you are working on)
CultureInfo currentCulture = CultureInfo.GetCultureInfo(CultureInfo.CurrentCulture.ToString());
// Specify the language that we need
CultureInfo myLanguage = CultureInfo.GetCultureInfo("en-US");
// Adapt the DateTime here, we will use the current time for this example
DateTime currentDate = DateTime.Now;
// The date in the format that we need
string myDate = DateTime.Parse(currentDate.ToString(), currentCulture).ToString(myLanguage);

How do you display the date without the time using a DateTime value in C#?

I have a datetime variable in my application. Its value is 01/09/2010 00:00:00. I want to get value of 01/09/2010. Still I want to use the DateTime structure. Is there any method/property for that. I know it is possible using conversion.
For example I have
DateTime date = new DateTime(2010,09,01);
It will display 01/09/2010 00:00:00
I want date to be 01/09/2010 alone.
Is it possible?
Call date.ToShortDateString() so see only the date part of the DateTime object.
To force a specific format (if that is not your default culture format), you can use
date.ToString("dd/MM/yyyy");
Note that Im not sure if 01 or 09 is the month in your example. If I have mixed them up, just replace "dd/MM/yyyy" with "MM/dd/yyyy"
Are you looking for a way to format the date for display/printing purposes, or to get rid of the time part if it is given?
Use the DateTime.ToShortDateString() method or the DateTime.Date property, respectively.

Categories

Resources