ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
In the Wrox United example website that comes with the book, ASP.NET 2.0 Beginner, on the Match Reports page a selectable field called 'More Details' has been implemented. On selecting this field the match report is displayed.
See WroxUnited/MatchReports.aspx
<asp:CommandField ShowSelectButton="True" SelectText="More Details"></asp:CommandField>
This field is always displayed whether a match report has been written or not. Is there a way of only displaying this field if a match report has been written? Presumeably I would have to check for Fixture Id in the Match Reports Table but not sure how to tie this to the command field.
I don't know the article, nor do I have time to read it, but I do know that you can convert the field to a template field, then handle the OnRowDataBound event. In the event you can hide the buttons if the fixture ID is NULL.