Hi,
I want to display HTML on a page.
For example:
If i have following values in a variable:
Then on html page i want to show these exact value not the formated text.
On page this will appear:
Thanx in advance
I want to display HTML on a page.
For example:
If i have following values in a variable:
Code:
Dim str As String str = <html><body><h1>Hello Html</h1></body></html>
On page this will appear:
Code:
<html><body><h1>Hello Html</h1></body></html>
Comment