本文介绍了使用VB.net将tinymce或ckeditor插入到asp.net项目中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请求插入tinymce或ckeditor在我的项目ASP.NET中使用VB.net ...
Pleas i want insert tinymce or ckeditor to use in my project ASP.NET with VB.net ...
推荐答案
<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>
对于CKEditor,您会发现以下CP文章非常有用。
- []
- []
- []
- How to Integrate CKEditor with ASP.NET[^]
- Integrate CKEditor with ASP.NET page[^]
- CKEditor in ASP.NET Without AJAX[^]
For CKEditor you shall find following CP articles really useful.
这篇关于使用VB.net将tinymce或ckeditor插入到asp.net项目中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!