Hi Raghu,
Your title of the question and inside description is not looking in sync with me, however based on what I understand you can show the date in repeater something like below.
<ItemTemplate>
<%= DateTime.Now %>
</ItemTemplate>
In case you have date type of field and want to display inside the Repeater, you can use something like
<ItemTemplate>
<%# Eval("CreatedDateTime") %>
</ItemTemplate>
If you want to customize the look and feel of Date, do like this.
In case you have date type of field and want to display inside the Repeater, you can use something like
<ItemTemplate>
<%# DateTime.Parse(Eval("CreatedDateTime").ToString()).ToShortDateString() %>
</ItemTemplate>
Hope this helps.
Thanks
Regards,
Sheo Narayan
http://www.dotnetfunda.com
Raghuldrag, if this helps please login to Mark As Answer. | Alert Moderator