It seems like when I input hebrew text inside asp:HyperLink on NavigateUrl property, it gets coded into its UTF8 coding, instead of just presenting me the hebrew word (like on regular non runat server link on same page).
So for
<asp:HyperLink ID="hypID" runat="server" NavigateUrl="שלום" />
I get
<a id="cphMiddle_repRightCol_hypCat_0" href="%d7%a9%d7%9c%d7%95%d7%9d">text</a>
Output on page, instead of
<a id="cphMiddle_repRightCol_hypCat_0" href="שלום">
text</a>
Can this be avoided?
Thanks everyone