& nbsp; in asp.net server system code?
I have this code:
string s = "royi";
string val = "5";
I also have label <asp:Label ..../>
I want to create s+" "+val
but I want to " "be
How can I do this server side?
Doing this shows me text  as text. (of course, since we are dealing with myLabel.Text, which contains text)
I also tried:
HttpUtility.HtmlEncode(s + " " + val);
any help?
+5