How to write HTML on Windows application

marwaend22

Member
Joined
Aug 31, 2006
Messages
6
Programming Experience
Beginner
Hi every body

I'm heve this problem Iwnat to display HTML code on lable or text on windows application
please tell me now
thanks very much
 
i would have to imagine that it would require the usage of the ASCII character code instead of actually typing it.

like maybe...

VB.NET:
lblHi.Text = "<a href=" & Chr(34) & "http://www.vbdotnetforums.com" & Chr(34) & ">"
 
Last edited by a moderator:
I think it is easier to write two double quotes inside quoted string like this:
VB.NET:
lblHi.Text = "<a href=""http://www.vbdotnetforums.com"">"
 
Back
Top