In case anyone else has the same question in the future, I think I found a couple of possible solutions:
Calender Feed Solution:
Open "RSS_calendar_feed.asp".
Modify the following code (between lines 326-331):
'Format the post to be sent with the e-mail strEventRSSOutput = "<div style=""display:none;""><strong>" & strTxtSubject & "</strong>:</div><b>" & sarryRssTopics(2, intCurrentRecord) & "</b>" & _ "<br /><div style=""display:none;""><strong>" & strTxtEventDate & ":</strong></div>" & stdDateFormat(dtmEventDate, False) If isDate(dtmEventDateEnd) Then strEventRSSOutput = strEventRSSOutput & " - " & stdDateFormat(dtmEventDateEnd, False) strEventRSSOutput = strEventRSSOutput & _ "" |
Forum Feed Solution:Open "RSS_topic_feed.asp".
Remove the following code (around line 345):
<% = Server.HTMLEncode(strForumName) %> : |
Edited by Tammi - 14 November 2007 at 11:33pm