Question

i am trying to create an ASP.net site where a user can have a wysiwyg editor and can put together a page and i am then saving that page (the html) as an html page.

I have looked at all the examples but it seems that from my testing, after i post to the server, i can get the content in pure text form but i can't seems to determine where to get the actual html equivalent.

suggestions?

Was it helpful?

Solution

The name attribute of the textarea will be the POST parameter key.

Dim Html As String = Request.Form("txtBody")
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top