Murray Brown
asked on
ASP.net Template field get date
Hi
I have an ASP.net template field that holds a DateTime value
I use the following line to find the control. How do I just get the date part in the format "dd MMM yyyy"?
Dim lblDateTime As Label = CType(row.FindControl("lbl DateTime") , Label)
I have an ASP.net template field that holds a DateTime value
I use the following line to find the control. How do I just get the date part in the format "dd MMM yyyy"?
Dim lblDateTime As Label = CType(row.FindControl("lbl
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER