Perfect. Thanks alot!!
Main Topics
Browse All TopicsThis works to format the display of a date in a Datalist in ASP.NET, but I can't figure how to do it in a DataGrid.
-----------------------COD
<asp:TemplateColumn HeaderText="Date"><%# DataBinder.Eval(Container.
-----------------------ERR
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Code blocks are not supported in this context.
Source Error:
Line 30: <asp:BoundColumn DataField="Date" HeaderText="Date:"></asp:B
Line 31: <asp:BoundColumn DataField="Status" HeaderText="Status:"></asp
Line 32: <asp:TemplateColumn HeaderText="TEST"><%# DataBinder.Eval(Container.
Line 33: </Columns>
Line 34: <PagerStyle Font-Size="X-Small" Font-Bold="True" HorizontalAlign="Center" ForeColor="Firebrick"
--------------------------
I am trying to prevent the data from showing up with the time in the datagrid. For this particular project, I have to use the datagrid control.
Thanks
CR
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: senior_internetPosted on 2006-09-21 at 11:44:20ID: 17571918
Hi chrisryhal,
DataItem, "Date","{0:d}") %>
You need to put the code inside template tags
<asp:TemplateColumn HeaderText="TEST">
<ItemTemplate>
<%# DataBinder.Eval(Container.
</ItemTemplate>
</asp:TemplateColumn>