I was recently introduced to Microsoft's tool that analyzes managed code assemblies called FxCop. It points out possible design, localization, performance and security improvements against a pre-defined set of rules (and also accepts custom rules). At first I was unsure how to go about using it, as it seems to be aimed at Windows developers (.exe and .dll). It’s easy to check an asp.net web site 1)Create a new folder (i.e C:\Code Analysis) 2)Publish your web application into the new folder 3)Open ......
Here is the markup for the repeater control and its templates: <asp:Repeater ID="Repeater" runat="server"> <HeaderTemplate> <table> <tr> <td colspan="3"><h2>He... information:</h2><... </tr> </HeaderTemplate> <ItemTemplate> <tr> <td><%#Container.D... </tr> </ItemTemplate> <FooterTemplate> </table> </FooterTemplate> </asp:Repeater> Here is the code to populate ......