Reputation: 196861
is there any example code of setting up tinymce within your web application using asp.net mvc?
Upvotes: 0
Views: 1293
Reputation: 58494
I have written some partial view templates for TinyMCE. (I also push TinyMCE to the feed when it is being updated)
Following article will walk you through for the process :
TinyMCE HTML Text Editior & ASP.NET MVC - Setting It Up Has Become Easy With Nuget
Upvotes: 0
Reputation: 3374
What are you asking?
Your view is HTML. Any example of setting up TinyMCE on a typical HTML page would work on MVC. The only difference might be if you use <%= Html.TextBox(...), in which case you use use the ID that you pass into the textbox.
Upvotes: 1