Guest User

Untitled

a guest
Jul 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. protected void DropDownList3_TextChanged(object sender, EventArgs e)
  2. {
  3. //Date
  4. String strDateTime = DropDownList3.SelectedValue.ToString() + " " + DropDownList1.SelectedValue.ToString() + ":" + DropDownList2.SelectedValue.ToString();
  5. DetailsViewRow row = DetailsView1.Rows[0];
  6. row.Cells[1].Text = strDateTime;
  7. }
Add Comment
Please, Sign In to add comment