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);
Label lbl = Repeater1.FindControl("lblcurrentdate") as Label;
lbl.Text = String.Format("{0:dd/MM/yyyy}", dt);
jeet guptaPosted Feb 19, 2015, 2:26 AM
You can use like this way also to print date in label.
Label lbl = Repeater1.FindControl("lblcurrentdate") as Label;
lbl.Text = DateTime.Now.ToString("dd-MM-yyyy");
Prasham SabadraPosted Feb 15, 2015, 12:30 AM
Please have a look once following link:
http://stackoverflow.com/questions/275194/formatting-databinder-eval-data