<?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 : Latest Forum Post</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 : Latest Forum Post]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 06:58:19 +0000</pubDate>
  <lastBuildDate>Tue, 31 May 2005 15:44:21 +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=15297</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[Latest Forum Post : you may have to set the charector...]]></title>
   <link>https://forums.webwiz.net/latest-forum-post_topic15297_post84367.html#84367</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 15297<br /><strong>Posted:</strong> 31&nbsp;May&nbsp;2005 at 3:44pm<br /><br />you may have to set the charector encoding to turkish charecters]]>
   </description>
   <pubDate>Tue, 31 May 2005 15:44:21 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/latest-forum-post_topic15297_post84367.html#84367</guid>
  </item> 
  <item>
   <title><![CDATA[Latest Forum Post : Thank you. Working fine.  i...]]></title>
   <link>https://forums.webwiz.net/latest-forum-post_topic15297_post84354.html#84354</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20649">GeorgeB</a><br /><strong>Subject:</strong> 15297<br /><strong>Posted:</strong> 31&nbsp;May&nbsp;2005 at 1:56pm<br /><br />Thank you. Working fine.<DIV>&nbsp;</DIV><DIV>i have included the page to my default.asp. but i can not see turkish characters correctly. is there any code to correct this? thanks.</DIV>]]>
   </description>
   <pubDate>Tue, 31 May 2005 13:56:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/latest-forum-post_topic15297_post84354.html#84354</guid>
  </item> 
  <item>
   <title><![CDATA[Latest Forum Post : Try commenting out these parts......]]></title>
   <link>https://forums.webwiz.net/latest-forum-post_topic15297_post84343.html#84343</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=19827">dfrancis</a><br /><strong>Subject:</strong> 15297<br /><strong>Posted:</strong> 31&nbsp;May&nbsp;2005 at 10:20am<br /><br />Try commenting out these parts... and see if it works.<DIV>&nbsp;</DIV><DIV><FONT face="Courier New, Courier, mono" color=#996600><strong>'Set rsLastestPosts = Nothing<BR>'adoCon.Close<BR>'Set adoCon = Nothing<BR>'Set strCon = Nothing<BR>%&gt;</strong></FONT></DIV><DIV><strong><FONT face="Courier New" color=#996600></FONT></strong>&nbsp;</DIV><DIV>If it works then look at when/where you can close the objects better.</DIV><DIV>&nbsp;</DIV><DIV>At least that's what I would do. <IMG height=17 alt=Embarrassed src="http://forums.webwiz.net/smileys/smiley9.gif" width=17 align=absMiddle border="0"></DIV>]]>
   </description>
   <pubDate>Tue, 31 May 2005 10:20:48 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/latest-forum-post_topic15297_post84343.html#84343</guid>
  </item> 
  <item>
   <title><![CDATA[Latest Forum Post : Hi all, I&amp;#039;m using the code...]]></title>
   <link>https://forums.webwiz.net/latest-forum-post_topic15297_post84322.html#84322</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20649">GeorgeB</a><br /><strong>Subject:</strong> 15297<br /><strong>Posted:</strong> 31&nbsp;May&nbsp;2005 at 5:16am<br /><br /><DIV>Hi all,</DIV><DIV>I'm using the code below to show latest forum post.</DIV><DIV>&nbsp;</DIV><DIV>&lt;%<BR>Dim rsLastestPosts<BR>Dim strPosts<BR>Dim adoCon<BR>Dim strCon<BR>Dim strSQL<BR>&nbsp;<BR>'Create a connection odject<BR>Set adoCon = Server.CreateObject("ADODB.Connection")<BR>&nbsp;<BR>'Database connection info and driver<BR>strCon = "DRIVER={Microsoft Access Driver (*.mdb)};uid=;pwd=; DBQ=" &amp; Server.MapPath("../../database/wwForum.mdb")<BR>&nbsp;<BR>'Set an active connection to the Connection object<BR>adoCon.Open strCon<BR>&nbsp;<BR>Set rsLastestPosts = Server.CreateObject("ADODB.Recordset")<BR>&nbsp;<BR>&nbsp;strSQL = "SELECT tblAuthor.Username, tblAuthor.Author_ID, tblTopic.Topic_ID, tblTopic.Subject, tblForum.Forum_ID, tblForum.&#091;Read&#093; "<BR>&nbsp;strSQL = strSQL &amp; "FROM tblForum INNER JOIN tblTopic ON tblForum.Forum_ID = tblTopic.Forum_ID "<BR>&nbsp;strSQL = strSQL &amp; "WHERE ((tblForum.Password) Is Null) "<BR>&nbsp;strSQL = strSQL &amp; "ORDER BY tblTopic.Last_entry_date DESC;"<BR>&nbsp;<BR>&nbsp;strSQL = "SELECT TOP 10 tblTopic.Topic_ID, tblTopic.Subject, tblForum.Forum_ID, tblForum.Forum_name, tblTopic.Last_entry_date, Count(tblThread.Thread_ID) AS CountOfThread_ID, Last(tblAuthor.Username) AS LastOfUsername, tblForum.&#091;Read&#093;"<BR>&nbsp;strSQL = strSQL &amp; " FROM (tblForum INNER JOIN tblTopic ON tblForum.Forum_ID = tblTopic.Forum_ID) INNER JOIN (tblAuthor INNER JOIN tblThread ON tblAuthor.Author_ID = tblThread.Author_ID) ON tblTopic.Topic_ID = tblThread.Topic_ID"<BR>&nbsp;strSQL = strSQL &amp; " WHERE (((tblForum.Password) Is Null))"<BR>&nbsp;strSQL = strSQL &amp; " GROUP BY tblTopic.Topic_ID, tblTopic.Subject, tblForum.Forum_ID, tblForum.Forum_name, tblTopic.Last_entry_date, tblForum.&#091;Read&#093;"<BR>&nbsp;strSQL = strSQL &amp; " ORDER BY tblTopic.Last_entry_date DESC;"<BR>&nbsp;rsLatestPosts.Open strSQL, adoCon<BR>&nbsp;<BR>rsLastestPosts.Open strSQL, strCon<BR>&nbsp;<BR>If rsLastestPosts.EOF Then Response.Write strTxtIngenNyPostPaStartsidan<BR>&nbsp;<BR>Do while NOT rsLastestPosts.EOF<BR>&nbsp;<BR>If len(rsLastestPosts("Subject"))&gt;100 then<BR>&nbsp;strPosts = left(rsLastestPosts("Subject"),50) &amp; "...&amp;nbsp;"<BR>Else<BR>&nbsp;strPosts = rsLastestPosts("Subject")<BR>&nbsp;LastOfUsername = rsLastestPosts("LastOfUsername")<BR>End If<BR>&nbsp;</DIV><DIV>%&gt;<BR>&lt;tr&gt;&lt;td bgcolor="#faf9f7" class="menuCell" onmouseover="this.className='menuCellOn';" onmouseout="this.className='menuCell';" noWrap width="65%" bgColor="#faf9f7" height="20"&gt;&amp;nbsp;<BR>&lt;a href="<A href="http://www.your_homepage_here/forum/forum_posts.asp?TID=<%" target="_blank">http://www.your_homepage_here/forum/forum_posts.asp?TID=&lt;%</A> = rsLastestPosts("Topic_ID") %&gt;" target="_self"&gt;&lt;span style="text-decoration: none"&gt;&lt;% = strPosts %&gt;&lt;/a&gt;&lt;/td&gt;<BR>&nbsp;&lt;td class="text" align="left"&gt;&lt;font size="1"&gt;&lt;% = strTxtTioSenasteForumTradarnaPaStartSidan %&gt;&amp;nbsp; &lt;% = rsLastestPosts("LastOfUsername") %&gt;&lt;br&gt;<BR>&lt;% <BR>rsLastestPosts.MoveNext<BR>Loop<BR>rsLastestPosts.Close<BR>Set rsLastestPosts = Nothing<BR>adoCon.Close<BR>Set adoCon = Nothing<BR>Set strCon = Nothing<BR>%&gt;</DIV><DIV>&nbsp;</DIV><DIV>I'm receiving this error:</DIV><DIV>Error Type:<BR>Microsoft VBScript runtime (0x800A01A8)<BR>Object required: 'rsLatestPosts'<BR><B>forum/new_posts.asp, line 29</B></DIV><DIV><strong></strong>&nbsp;</DIV><DIV>Thank you.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 31 May 2005 05:16:36 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/latest-forum-post_topic15297_post84322.html#84322</guid>
  </item> 
 </channel>
</rss>