在 ASP.NET MVC 3 项目中包含注释的最佳方式是什么?
在Wordpress中,我可以启用wp_comments来显示评论系统。
我想编写代码,以便每当我在 HTML 标记中编写注释时,它都会调用我编写的注释代码。
如何在 ASP.NET MVC 或 ASP.NET Web 表单中实现此目的?
In Wordpress, I can enable wp_comments to show the commenting system.
I want to write code so that whenever I write comments in HTML markup, it calls my comments written codes.
How can I achieve this in ASP.NET MVC or ASP.NET web forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有多种方法可以向 ASP.NET MVC 3 Web 项目添加注释。
1.在您的应用程序中开发评论部分
如果您希望为您的网站创建定制评论功能,本文为您提供了如何实现这一目标的清晰演练。
2.将第三方评论服务集成到您的网站
或者,您可以使用 DISQUS 等第三方服务并将其集成到您的应用中。 这里有一个链接概述了如何执行此操作。
ASP.NET 没有“开箱即用”的注释系统。另外,您无法真正将 ASP.NET MVC 框架与 Wordpress 进行比较,因为它们完全不同。
由于您有特定的功能(输出 HTML 标记),我建议使用选项 #1。
There are several ways to add comments to your ASP.NET MVC 3 web project.
1. Develop a comments section within your application
If you wish to create bespoke commenting functionality for your site, this article gives you a clear walk-through on how you can achieve this.
2. Integrate third party comment service into your website
Alternatively, you could use a third party service like DISQUS and integrate it into your app. Here's a link outlining how to do this.
There's no 'out of the box' commenting system for ASP.NET. Also, you can't really compare the ASP.NET MVC Framework with Wordpress as they are completely different.
Since you have specific functionality (outputting HTML markup), I'd recommend option #1.