Hi developers. In one of my web forms page i would like to generate plain HTML as output based on user input. i.e I have a textbox to enter an article heading and a rich textbox to enter article body/content and a button to generate html. For eg if user
enters "My Heading" as article heading and "some content...." as his article content on the click of button i need to generate output like the following
<html>
<head>
My Heading
</head>
<body>
some content....
</body>
</html>
Can somebody plz help me how to do this.When i googled about this i found html report generation which is completely different from my task.So thats y i am posting here.
Thanks in Advance.
Go to the complete details ...