<?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 : Specifying href target window in 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 : Specifying href target window in post]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 02:24:12 +0000</pubDate>
  <lastBuildDate>Thu, 13 Jan 2005 09:18:13 +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=13335</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[Specifying href target window in post : nothing. lol..  i wrote the...]]></title>
   <link>https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73788.html#73788</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 13335<br /><strong>Posted:</strong> 13&nbsp;January&nbsp;2005 at 9:18am<br /><br />nothing. lol..<br><br>i wrote the message then changed a section so you don;t actually haveto do a section its just the above that need(ed) to be done.<br>]]>
   </description>
   <pubDate>Thu, 13 Jan 2005 09:18:13 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73788.html#73788</guid>
  </item> 
  <item>
   <title><![CDATA[Specifying href target window in post :   dj air wrote:you will also...]]></title>
   <link>https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73787.html#73787</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14711">nenad</a><br /><strong>Subject:</strong> 13335<br /><strong>Posted:</strong> 13&nbsp;January&nbsp;2005 at 9:16am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by dj air" alt="Originally posted by dj air" style="vertical-align: text-bottom;" /> <strong>dj air wrote:</strong><br /><br /><BR><BR>you will also have to <BR></td></tr></table> <DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Thanks, it's OK now. But what I will also have to?</DIV>]]>
   </description>
   <pubDate>Thu, 13 Jan 2005 09:16:33 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73787.html#73787</guid>
  </item> 
  <item>
   <title><![CDATA[Specifying href target window in post : yes this is V8  in any other...]]></title>
   <link>https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73782.html#73782</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 13335<br /><strong>Posted:</strong> 13&nbsp;January&nbsp;2005 at 8:59am<br /><br />yes this is V8<br><br>in any other release its not set within the input, its in the link/forum&nbsp; validation (security checks). <br><br>if you edit the functions_filters.asp file within the functions folder <br>to the below it should then show within the same window.<br><br><table width="99%"><tr><td><pre class="BBcode"><br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'If this is an hyperlink tag then check it for malicious code<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If InStr(1, strTempHTMLMessage, "href", 1) &lt;&gt; 0 Then<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Turn &lt; and &gt; into forum codes so they aren'tstripped when checking links<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strTempHTMLMessage = Replace(strTempHTMLMessage,"&lt;", "**/**", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strTempHTMLMessage = Replace(strTempHTMLMessage,"&gt;", "**\**", 1, -1, 1)<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Call the format link function to strip maliciouscodes<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strTempHTMLMessage = formatLink(strTempHTMLMessage)<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Turn **/** and **\** back from forum codes<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strTempHTMLMessage = Replace(strTempHTMLMessage,"**/**", "&lt;", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strTempHTMLMessage = Replace(strTempHTMLMessage,"**\**", "&gt;", 1, -1, 1)<br><br><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Format link tag</span><br style="font-weight: bold;"><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strTempHTMLMessage =Replace(strTempHTMLMessage, "&gt;", " target=""_blank""&gt;", 1, -1, 1)</span><br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; End If<br></pre></td></tr></table><br><br>change the _blank to _self<br><br>replace the bold line then they will all be displaied within the same /window.<br><br>you will also have to <br>]]>
   </description>
   <pubDate>Thu, 13 Jan 2005 08:59:46 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73782.html#73782</guid>
  </item> 
  <item>
   <title><![CDATA[Specifying href target window in post : I couldn&amp;#039;t find the answer...]]></title>
   <link>https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73779.html#73779</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14711">nenad</a><br /><strong>Subject:</strong> 13335<br /><strong>Posted:</strong> 13&nbsp;January&nbsp;2005 at 8:09am<br /><br />I couldn't find the answer sarching the posts, but I can see a difference right here.<DIV>&nbsp;</DIV><DIV>So this is Web Wiz Forum V8.0 with RTE 2.0 beta, and I'm using version 7.9.</DIV><DIV>&nbsp;</DIV><DIV>Well, is it possible somehow to specify in post that href opens in _self window. Now it opens in _blank what is, I think the default value.</DIV><DIV>&nbsp;</DIV><DIV>I can see here in V8.0 thanks to RTE 2.0 that it is possible (so we have to wait a while - right?)</DIV><DIV>&nbsp;</DIV><DIV>Thanks for the answer in advance.</DIV>]]>
   </description>
   <pubDate>Thu, 13 Jan 2005 08:09:35 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/specifying-href-target-window-in-post_topic13335_post73779.html#73779</guid>
  </item> 
 </channel>
</rss>