I have this code in the asp.net page that works assigning the value to dtStart, but how do I update the variable dtStart to what the user manually enters or modifies the datetime value in the txtStart control box? thanks.
protected void btnStart_Click(object sender, EventArgs e)
{
txtStart.Text = DateTime.Now.ToString();
dtStart = DateTime.Now;
}