VSNet Flags Table Tag

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:DataList 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:DataList>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,263
Messages
2,571,064
Members
48,769
Latest member
Clifft

Latest Threads

Top