Ciao a tutti,
ho un problema con <asp:HyperLink> / <asp:HyperLinkColumn>.

Nella mia pagina .aspx quando imposto questo controllo

<asp:HyperLink id="hyperlink1"
NavigateUrl="http://www.xxxxxxx.xxx?id='<%#GetValue()%>'&cod='<%GetCod ()%>'"
Text="XXXXXXXX"
Target="_new"
runat="server"/>

ottengo a runtime un Parser error
con questa dicitura :
The server tag is not well formed.
<asp:HyperLink id="hyperlink1"
NavigateUrl="http://www.xxxxxxx.xxx?id='<%#GetValue()%>'&cod='<%GetCod ()%>'"
Text="XXXXXXXX"
Target="_new"
runat="server"/>

Come posso fare per passare due argomenti ad un hyperlink?

Adesso ho aggirato l'ostacolo usando un <a href>


Sister