W
Wayne Wengert
I am trying to create a hyperlink which calls a specific page and passes
some variables. I am getting an error message on the code section below. The
error states that "the server tag is not well formed". I suspect it is my
syntax? I know the data fields are OK as they display fine in the other
cells.
=====================================================
<td>
<asp:HyperLink id="editlink" runat="server"
Text = "Edit"
NavigateURL= "evaljudge.asp?name=" &
<%#Container.DataItem("JudgeName")%> & "&caption=" &
<%#Container.DataItem("Caption")%>
</asp:HyperLink>
</td>
<td>
<%#Container.DataItem("JudgeName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>
some variables. I am getting an error message on the code section below. The
error states that "the server tag is not well formed". I suspect it is my
syntax? I know the data fields are OK as they display fine in the other
cells.
=====================================================
<td>
<asp:HyperLink id="editlink" runat="server"
Text = "Edit"
NavigateURL= "evaljudge.asp?name=" &
<%#Container.DataItem("JudgeName")%> & "&caption=" &
<%#Container.DataItem("Caption")%>
</asp:HyperLink>
</td>
<td>
<%#Container.DataItem("JudgeName")%>
</td>
<td align="center">
<%#Container.DataItem("Caption")%>
</td>