Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Pleas i want insert tinymce or ckeditor to use in my project ASP.NET with VB.net ...
Posted

1 solution

Hello,

Both of these editors are done using Javascript. So using them is pretty easy. Below snippet, shows you the minimal configuration required to turn a textarea into a TinyMCE editor.
HTML
<html>
<head>
...
<script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
    selector: "textarea"
});
</script>
</head>
<body>
    <form method="post">
        <textarea></textarea>
    </form>
</body>
</html>

For CKEditor you shall find following CP articles really useful.

Regards,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900