在 ASP.NET MVC 3 项目中包含注释的最佳方式是什么?

发布于 2025-01-03 09:46:36 字数 142 浏览 0 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我入戏太深 2025-01-10 09:46:36

有多种方法可以向 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文