Vishnu Bhangale

Vishnu Bhangale

  • NA
  • 195
  • 19.8k

Print Current Date in repeater control in asp.net

Feb 14 2015 8:14 AM
Hello,
 
I am trying to print current date on repeater control .Date should be print on Label .Date is not from DataBase
I find control i.e. Label but not work my code is..
 
DateTime dt = DateTime.Now;
Label lbl = Repeater1.FindControl("lblcurrentdate") as Label;
lbl.Text = String.Format("{0:dd/MM/yyyy}", dt); 

Answers (2)