I have try to display selected date from calendar into textbox.
But, I got error.
My textbox name is txtStart
My calendar name is Calendar1
Here is my code..
protected void Calendar1_SelectionChanged(object sender, System.EventArgs e)
{
System.DateTime myDate = new System.DateTime();
myDate = Calendar1.SelectedDate.ToString("MM/dd/yyyy");
txtStart.Text = myDate;
}
The error is:
Cannot implicitly convert type 'string' to 'System.DateTime'
Cannot implicitly convert type 'System.DateTime' to 'string'
can someone help me about the error?