I am trying to mix in some code by doing this:
<asp:HyperLink id="lnkLink" runat="server" CssClass="Normal" Text='<%# "<font color=green>" + formatURL(DataBinder.Eval(Container.DataItem,"TabId"),DataBinder.Eval(Container.DataItem,"Guid")) + "</font>" %>'></asp:hyperlink>
<%
Dim sSrc As String = lnkLink.Text
sSrc = sSrc.Remove(0, sSrc.LastIndexOf(".") + 1)
Response.Write(sSrc)
%>
However, I am getting an error that the module cannot be loaded. The module will load if I remark out the lines. I can add HTML no problem but not asp.net?