Joel.Net.PageComments
Overview
Joel.Net.PageComments is a UserControl that allows visitors to your website to comment on a pages of your ASP.NET website.
Features
-
Works in any ASP.NET site (C#, VB.NET, etc.)
-
Comments are stored XML format.
-
Moderation - Pages can require validation before comments can become visible on the site.
-
EMail Validation - Pages can require a valid email address before comments are submitted.
-
Modular Design - Allows many different design formats.
<%@ Register TagPrefix="uc1" TagName="PageComments_Count" Src="PageComments.Count.ascx" %>
<%@ Register TagPrefix="uc1" TagName="PageComments_Display" Src="PageComments.Display.ascx" %>
<HTML>
<BODY>
<DIV id="divcomments" style="DISPLAY: all">
<UC1:PAGECOMMENTS_DISPLAY id="comments" comment_file="PageComments.xml" category="main" runat="server" />
</DIV>
<UC1:PAGECOMMENTS_COUNT runat="server" id="count" category="main" comment_href="javascript:if(document.getElementById('divcomments').style.display=='none')document.getElementById('divcomments').style.display='';else document.getElementById('divcomments').style.display='none';" />
</BODY>
</HTML>
Links