hi all,
can u plz identify why error occurs:
<asp:repeater id="repDocuments" runat="server">
<HeaderTemplate>
<TABLE id="Table61" height="150" width="100%" cellpadding="0" cellspacing="0">
<TR>
<TD class="GridSeperator"></TD>
<TD class="GridHeader" height="20px" width="25%" align="center">Document Name</TD>
<TD class="GridSeperator"></TD>
<TD class="GridHeader" align="center" width="20%">Description</TD>
<TD class="GridSeperator"></TD>
</TR>
</HeaderTemplate>
<ItemTemplate>
<TR>
<td class="GridSeperator"> </td>
<TD align="left" valign="top" class="GridCell" height="25px"> <%#DataBinder.Eval(Container, "DataItem.DocumentTitle")%> </TD>
<TD class="GridSeperator"></TD>
<TD align="left" valign="top" class="GridCell"><%# DataBinder.Eval(Container, "DataItem.Description")%></TD>
<TD class="GridSeperator"></TD>
</TR>
</ItemTemplate>
<FooterTemplate>
<TR>
<td class="GridSeperator"> </td>
<TD class="GridCell"></TD>
<TD class="GridSeperator"></TD>
<TD class="GridCell"></TD>
<TD class="GridSeperator"></TD>
</TR>
<TR>
<TD class="GridSeperator" colspan="11" height="3"></TD>
</TR>
</TABLE>
FooterTemplate> </asp:repeater>
the bold line is showing compilationError: cs1040 Preprocessor directives must appear as
the first non-whitespace character on a line
thx