ASP Classic Comments Jon Davis SETUP: To add commenting features to your ASP web application, put these files in a place suitable for referencing in INCLUDE statements in the ASP files you wish to add comment links to. Then customize the first few lines of inc_comments.asp to suit your environment. SiteOwnerEmail = "me@mysite.com" ' << Enter your e-mail address SiteOwnerName = "My Name" ' << Enter your name CommentsDir = "C:\inetpub\wwwroot\" ' << Enter the path to ' where you want to store your comments (*.cmnt) files. This ' path should be configured with IUSR_[SERVER] having full ' write/modify permissions. CommentsDir = Replace(CommentsDir, "/", "\") ' <<< IGNORE If Right(CommentsDir, 1) <> "\" Then CommentsDir = _ CommentsDir & "\" ' <<< IGNORE CommentsPage = "/ViewComments.asp" ' << Path to this file CommentsPageUrl = "http://www.mysite.com" & CommentsPage ' << URL Then, in each page you wish to add commenting links (i.e your blog page, your blog article template, etc.) put the following lines below the tag: <%WriteOpenCommentScript%> .. where ../inc_comment.asp is the path to the "inc_comment.asp" file. For your ArticlePage template, add the following tag: <%=getlink("{$Article.Id$}")%> .. where {$Article.ID$} is the id of your article. Finally, if you are putting the comments links in a BlogPage template, put the above tag in the tag so that it gets evaluated for each blog article.