leora
leora

Reputation: 196861

embed tinymce in your asp.net mvc website

is there any example code of setting up tinymce within your web application using asp.net mvc?

Upvotes: 0

Views: 1293

Answers (2)

tugberk
tugberk

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

http://www.tugberkugurlu.com/archive/tinymce-html-text-editior-and-asp-net-mvc-setting-it-up-has-become-easy-with-nuget

Upvotes: 0

James S
James S

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

Related Questions