leora
leora

Reputation: 196429

TinyMCE in ASP.net - how can i extract out the html?

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

Answers (1)

Josh Stodola
Josh Stodola

Reputation: 82483

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

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

Upvotes: 1

Related Questions