I have ASP.NET
web page (mypage.aspx) which has a TextBox
(multiline) and a Button.
Problem: I want to add html content into textbox and then click the button, it should generate the exact web page according to my html.
Example:
<html>
<head><title></title></head>
<body>
<h1>Hello</h1>
</body>
</html>
The generated web page should contain Hello.
Any idea..?
Thank in advance.