views:

74

answers:

1

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?

+1  A: 

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

Dim Html As String = Request.Form("txtBody")
Josh Stodola