将 MarkitUp 和 MarkdownSharp 与 asp.net 表单网站集成
我在我的 asp.net 表单网站上使用 markdownsharp。
我想使用 MarkItUp 作为我的编辑器,并且找到了一篇关于如何与 MVC 集成的直截了当的文章,它看起来足够简单:http://rsolberg.com/2010/09/asp-net-mvc-markitup-rich-text-editor/
但是,如何做我用表单网站来做这个?
如何在回发时获取 MarkItDown Textarea 并让预览也正常工作?
I'm using markdownsharp with my asp.net forms website.
I want to use MarkItUp as my editor and have found a straight forward article on how to integrate with MVC which seems straight forward enough: http://rsolberg.com/2010/09/asp-net-mvc-markitup-rich-text-editor/
However, how do I do this with a forms website?
How do I get the MarkItDown Textarea on a postback and get the preview to work as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 Javascript 和 CSS 文件链接放置在页面的头部,就像使用 MVC 一样。然后在窗体中放置一个 TextArea 控件。根据需要设置行和列。
然后使用 JQuery 启用该功能。
然后,在 PostBack 上,编辑器的内容将在 TextBox 控件的 Text 属性中可用。
这不是执行此操作的唯一方法,您还可以使用带有 runat="server" 属性的 HTML TextArea 控件。使用您个人的喜好。
Place the Javascript and CSS file links in the head portion of the page just as you would with MVC. Then in your form, place a TextArea control. Set the rows and columns as needed.
Then use JQuery to enable to functionality.
Then on PostBack the contents of the editor will be available in the Text property of the TextBox control.
This is not the only way to do this, you could also use a HTML TextArea control with a runat="server" attribute. Use whatever your personal preference is.