0

I am using TimeSpanPicker in my application. Default value of the textbox in the TimeSpanPicker is something like "00:00:00" which its type is TimeSpan.

enter code here

 TimeSpanPicker ts = new TimeSpanPicker ();
 ts.Value = TimeSpan.Parse("00:00:00");

I am trying to change the value of timespanpicker to a string but I face with an error. How can I solve this problem?

Thanks,B

Bahador Saket
  • 995
  • 1
  • 12
  • 24

1 Answers1

0

Would TimeSpan.ToString() do the trick for you? else this post might help u as well

Community
  • 1
  • 1
Digital Alchemist
  • 2,324
  • 1
  • 15
  • 17