if (DropDownList1.SelectedValue = "No Value")
{
DropDownList1.SelectedValue = now + " , "+ DropDownList1.SelectedValue;
}
how to tackle this?
if DropDownList1 value is No Value, i want to concatenate now to DropDownList1 value
Go to the complete details ...