I need to configure last week, in the past months dropdownlist change periods
I do
switch (DDL.SelectedIndex)
{
case 0:
{
this.TextBox3.Text = DateTime.
this.TextBox4.Text = DateTime.
} break;
case 1:
{
this.TextBox3.Text = DateTime.
this.TextBox4.Text = DateTime.
} break;
}
So are there some ways I can select date values ββas I want?
In addition, I have an AJAX calendar expander in text fields
thank.
source
share