<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : mod w/ Last Post Topic</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : mod w/ Last Post Topic]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 07 Apr 2026 18:14:01 +0000</pubDate>
  <lastBuildDate>Thu, 22 Jan 2004 15:50:03 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=7871</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[mod w/ Last Post Topic : James, I am using Access so the...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48523.html#48523</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 22&nbsp;January&nbsp;2004 at 3:50pm<br /><br /><P>James,</P><P>I am using Access so the mod has only been tested using Access.&nbsp; </P><P>I believe you would need to change the SQL in the L<FONT size=2>astForumPostEntry stored procedure, adding the Topic.Subject reference in the SELECt and the JOIN in the FROM clause to make this mod work for SQL Server.&nbsp; The rest of the changes to default.asp should be the same whether using Access or SQL Server.</FONT></P><P>To summarize the changes:</P><P>1) add a variable to hold the Subject (I called that strLastEntrySubject)</P><P>2)&nbsp;modify the SQL Query (in default.asp if Access,&nbsp;in LastForumPostEntry if SQL Server) to return Subject from the Topic table (obtained by adding a JOIN to the FROM clause)</P><P>3) populate strLastEntrySubject from the query results</P><P>4) use strLastEntrySubject as the hyperlink text to provide a link to the last post in the respective forum (lngLastEntryTopicID).</P><P>-- if SQL Server supports LEFT JOIN I would use it instead of INNER JOIN to prevent null forums (a forum without any posted topics) from having an incorrectly displayed Subject.</P>]]>
   </description>
   <pubDate>Thu, 22 Jan 2004 15:50:03 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48523.html#48523</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : Will this work on the SQL Server...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48164.html#48164</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9197">drjamez</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 21&nbsp;January&nbsp;2004 at 10:36am<br /><br /><P>Will this work on the SQL Server version, or is it just for Access?</P><P>- James -</P>]]>
   </description>
   <pubDate>Wed, 21 Jan 2004 10:36:00 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48164.html#48164</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : LePaul, I will email you the...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48131.html#48131</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 21&nbsp;January&nbsp;2004 at 8:49am<br /><br /><P>LePaul,</P><P>I will email you the complete default.asp.</P><P>Here are the lines I changed:</P><P>---------------- create holder for subject "topic name"</P><P>' MOD: to display Topic Name in Last Post column<BR>Dim strLastEntrySubject&nbsp;&nbsp;&nbsp;&nbsp; 'Holds the subject of the last entry</P><P>---------------- Add the Subject column to the SELECT statement in&nbsp;the Access query</P><P>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strSQL = "SELECT Top 1 " &amp; strDbTable &amp; "Author.Username, " &amp; strDbTable &amp; "Author.Author_ID, " &amp; strDbTable &amp; "Thread.Topic_ID, " &amp; strDbTable &amp; "Thread.Thread_ID, " &amp; strDbTable &amp; "Thread.Message_date "<BR>' MOD: to display Topic Name in Last Post column<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strSQL = "SELECT Top 1 " &amp; strDbTable &amp; "Author.Username, " &amp; strDbTable &amp; "Author.Author_ID, " &amp; strDbTable &amp; "Thread.Topic_ID, " &amp; strDbTable &amp; "Thread.Thread_ID, " &amp; strDbTable &amp; "Thread.Message_date, " &amp; strDbTable &amp; "Topic.Subject "</P><P>---------------- Add an INNER JOIN to the Access query to include the Subject from the Topic table<BR></P><P>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "FROM " &amp; strDbTable &amp; "Author "<BR>' MOD: to display Topic Name in Last Post column<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "FROM " &amp; strDbTable &amp; "Author, " &amp; strDbTable &amp; "Thread&nbsp;&nbsp; INNER JOIN "&nbsp; &amp; strDbTable &amp; "Topic ON " &amp; strDbTable &amp; "Topic.Topic_ID = " &amp; strDbTable &amp; "Thread.Topic_ID "</P><P>---------------- populate the strLastEntrySubject from the query results</P><P>' MOD: to display Topic Name in Last Post column<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strLastEntrySubjec t = rsCommon("Subject")</P><P>---------------- Add the link to the last entry using the Subject as the hypertext</P><P>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Write(""" background=""" &amp; strTableBgImage &amp; """ width=""29%"" class=""smText"" align=""right""&nbsp; nowrap=""nowrap""&gt;" &amp; DateFormat(dtmLastEntryDate, saryDateTimeData) &amp; "&amp;nbsp;" &amp;&nbsp; strTxtAt &amp; "&amp;nbsp;" &amp; TimeFormat(dtmLastEntryDate, saryDateTimeData) &amp; "" &amp; _<BR>' MOD: to display Topic Name in Last Post column&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Write(""" background=""" &amp; strTableBgImage &amp; """ width=""29%"" class=""smText"" align=""right""&nbsp; nowrap=""nowrap""&gt;&lt;a href=""forum_posts.asp?TID=" &amp; lngLastEntryTopicID &amp; "&amp;get=last#" &amp; lngLastEntryMeassgeID &amp; """ target=""_self""&gt;" &amp; strLastEntrySubject &amp; "&lt;/a&gt;" &amp; vbCrLf &amp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;br /&gt;" &amp; DateFormat(dtmLastEntryDate, saryDateTimeData) &amp; "&amp;nbsp;" &amp;&nbsp; strTxtAt &amp; "&amp;nbsp;" &amp; TimeFormat(dtmLastEntryDate, saryDateTimeData) &amp; "" &amp; _<BR></P><span style="font-size:10px"><br /><br />Edited by jimdmurphy</span>]]>
   </description>
   <pubDate>Wed, 21 Jan 2004 08:49:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post48131.html#48131</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : Any chance of a link to your mod&amp;#039;d...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post47641.html#47641</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=7721">LePaul</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 18&nbsp;January&nbsp;2004 at 8:15am<br /><br /><P>Any chance of a link to your mod'd default.asp ?</P><P>The oppritunity to screw up a lot in that file by me, a newbie, is immense&nbsp; <IMG src="https://forums.webwiz.net/smileys/smiley9.gif" border="0"></P><P>Or email me bd5pilot at yahoo dot com</P><P>Thanks!</P>]]>
   </description>
   <pubDate>Sun, 18 Jan 2004 08:15:21 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post47641.html#47641</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic :   I made the following changes...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post47528.html#47528</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 17&nbsp;January&nbsp;2004 at 11:33am<br /><br /><p>I made the following changes to default.asp to accomplish placing a link to the last Subject:</p><p>Dim <strong>strLastEntrySubject&nbsp;</strong>&nbsp;&nbsp;&nbsp; 'Holds the subject of the last entry</p><p>---------</p><p>In the section "&nbsp;'Initalise the strSQL variable with an SQLstatement to query the database for the date of the last entry and theauthor for the thread " I added:</p><p><strong>Topic.Subject</strong> to the SELECT </p><p>AND an INNER JOIN (<strong>INNER JOIN "&nbsp; &amp; strDbTable &amp;"Topic ON " &amp; strDbTable &amp; "Topic.Topic_ID = " &amp; strDbTable&amp; "Thread.Topic_ID "</strong><br>) to the FROM clause</p><p>---------------</p><p>I added ("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>strLastEntrySubject = rsCommon("Subject")</strong>")&nbsp; to the "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'If there arethreads for topic then read in the date and author of the last entry"section</p><p>------------------</p><p>AND&nbsp; ( <strong>&lt;a href=""forum_posts.asp?TID=" &amp;lngLastEntryTopicID &amp; "&amp;get=last#" &amp; lngLastEntryMeassgeID&amp; """ target=""_self""&gt;" &amp; strLastEntrySubject &amp;"&lt;/a&gt;"</strong> ) to the "&nbsp;&nbsp;'Write the HTML of the forum descriptions and hyperlinks to the forums" section.</p><p>&nbsp;</p><p>--------</p><p>These changes to support MS-Access work well except for forums thathave no topics yet.&nbsp; Since INNER JOIN is supported but not LEFTJOIN, the Subject in the query is populated even for null topics.</p><p>Example of mod:</p><p><img src="http://www.churchplantingnw.org/c&#111;ntent/linktosubject.jpg" border="0"><br></p><span style="font-size:10px"><br /><br />Edited by -boRg-</span>]]>
   </description>
   <pubDate>Sat, 17 Jan 2004 11:33:33 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post47528.html#47528</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : okay, I&amp;#039;ll assume that there...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post40527.html#40527</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 09&nbsp;December&nbsp;2003 at 11:34pm<br /><br /><P>okay,&nbsp; I'll assume that there aren't any mods for this...</P><P>I can probably figure out where in default.asp to make the mod, but any advice is welcome.</P>]]>
   </description>
   <pubDate>Tue, 09 Dec 2003 23:34:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post40527.html#40527</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : If this mod exists it would provide...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post40246.html#40246</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 08&nbsp;December&nbsp;2003 at 1:11am<br /><br />If this mod exists it would provide the user the oportunity to know the topic of the latest post in a forum prior to them linking to that topic.&nbsp; ]]>
   </description>
   <pubDate>Mon, 08 Dec 2003 01:11:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post40246.html#40246</guid>
  </item> 
  <item>
   <title><![CDATA[mod w/ Last Post Topic : Is there a mod that places the...]]></title>
   <link>https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post39811.html#39811</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13726">jimdmurphy</a><br /><strong>Subject:</strong> 7871<br /><strong>Posted:</strong> 05&nbsp;December&nbsp;2003 at 3:02am<br /><br />Is there a mod that places the last post <strong>Topic</strong> name within the Last Post cell of default.asp?]]>
   </description>
   <pubDate>Fri, 05 Dec 2003 03:02:20 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/mod-w-last-post-topic_topic7871_post39811.html#39811</guid>
  </item> 
 </channel>
</rss>