W
Wayne Wengert
I imported a set of aspx pages that had been built in a text editor into a VSNet project. The project seems to be working fine but on one of the pages the table tag and all the TR tags not in that section have the red squiggles under them. I can't see what the problem is. Any pointers appreciated.
==================================================================
<asp
ataList id="studentlist" runat="server">
<HeaderTemplate>
<table width="90%" cellpadding="10" border="2">
<tr bgcolor="navajowhite">
<th>
Action</th>
<th Nowrap>
Student</th>
<th>
Caption</th>
<th align="center">
Proposed<br />
Status</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr bgcolor="cornsilk">
<td>
<asp:HyperLink id="X1" runat="server" NavigateUrl= '<%# "http://mysite/mypage.asp?name=" + DataBinder.Eval(Container.DataItem,"StudentName") + "&caption=" + DataBinder.Eval(Container.DataItem,"Caption") + "&evalid=" + (Session("EvaluatorID")) %>' Text= "Evaluate" >
</asp:HyperLink>
</td>
<td NoWrap>
<%#Container.DataItem("StudentName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>
<td align="center" nowrap>
<%#Container.DataItem("ProposedStatus")%>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr bgcolor="bisque">
<td>
<asp:HyperLink id="XX" runat="server" NavigateUrl= '<%# "http://mysite/mypage.asp?name=" + DataBinder.Eval(Container.DataItem,"StudentName") + "&caption=" + DataBinder.Eval(Container.DataItem,"Caption") + "&evalid=" + (Session("EvaluatorID")) %>' Text= "Evaluate" >
</asp:HyperLink>
</td>
<td Nowrap>
<%#Container.DataItem("StudentName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>
<td align="center" nowrap>
<%#Container.DataItem("ProposedStatus")%>
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
<tr bgcolor="navy" >
<td colspan="8" align="center">
<font color="white" size="-1" weight="600">WGI Confidential</font></td>
</td>
</tr>
</table>
</FooterTemplate>
</asp
ataList>
==================================================================
<asp
<HeaderTemplate>
<table width="90%" cellpadding="10" border="2">
<tr bgcolor="navajowhite">
<th>
Action</th>
<th Nowrap>
Student</th>
<th>
Caption</th>
<th align="center">
Proposed<br />
Status</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr bgcolor="cornsilk">
<td>
<asp:HyperLink id="X1" runat="server" NavigateUrl= '<%# "http://mysite/mypage.asp?name=" + DataBinder.Eval(Container.DataItem,"StudentName") + "&caption=" + DataBinder.Eval(Container.DataItem,"Caption") + "&evalid=" + (Session("EvaluatorID")) %>' Text= "Evaluate" >
</asp:HyperLink>
</td>
<td NoWrap>
<%#Container.DataItem("StudentName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>
<td align="center" nowrap>
<%#Container.DataItem("ProposedStatus")%>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr bgcolor="bisque">
<td>
<asp:HyperLink id="XX" runat="server" NavigateUrl= '<%# "http://mysite/mypage.asp?name=" + DataBinder.Eval(Container.DataItem,"StudentName") + "&caption=" + DataBinder.Eval(Container.DataItem,"Caption") + "&evalid=" + (Session("EvaluatorID")) %>' Text= "Evaluate" >
</asp:HyperLink>
</td>
<td Nowrap>
<%#Container.DataItem("StudentName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>
<td align="center" nowrap>
<%#Container.DataItem("ProposedStatus")%>
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
<tr bgcolor="navy" >
<td colspan="8" align="center">
<font color="white" size="-1" weight="600">WGI Confidential</font></td>
</td>
</tr>
</table>
</FooterTemplate>
</asp