In NavigateUrl of the component # that is within a ItemTemplate
of the component em> ListView do: / p>
NavigateUrl='<%#string.Format("https://pt.wikipedia.org/wiki/{0}", Eval("Cidade"))%>'>
Full Code:
<form id="form1" runat="server">
<div>
<asp:ListView ID="ListView1" runat="server">
<ItemTemplate>
<asp:HyperLink
ID="HyperLink1"
runat="server"
Text ='<%#Eval("Cidade") %>'
NavigateUrl='<%#string.Format("https://pt.wikipedia.org/wiki/{0}", Eval("Cidade"))%>'>
</asp:HyperLink>
</ItemTemplate>
</asp:ListView>
</div>
</form>
In the latest version you can do this too:
NavigateUrl='<%#$"https://pt.wikipedia.org/wiki/{Eval("cidade")}"%>'>
This feature calls: C # 6 - String Interpolation