Reputation: 196429
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?
Upvotes: 1
Views: 212
Reputation: 82483
The name
attribute of the textarea
will be the POST parameter key.
Dim Html As String = Request.Form("txtBody")
Upvotes: 1