Hi
I try to write out a querystring value on my page, but the querystring contains a value like this....
mypage.aspx?K=l%F6v
and when I try to write that on my page with ..
Label1.Text = (Server.HtmlEncode(Request.QueryString("K")))
only 'lv' is written on the page when it really should have been löv (o with two dots over it). How can I get this to work?
I try to write out a querystring value on my page, but the querystring contains a value like this....
mypage.aspx?K=l%F6v
and when I try to write that on my page with ..
Label1.Text = (Server.HtmlEncode(Request.QueryString("K")))
only 'lv' is written on the page when it really should have been löv (o with two dots over it). How can I get this to work?