<?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 : Wierd thing with quotes, advice please</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 : Wierd thing with quotes, advice please]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 07 Apr 2026 20:23:56 +0000</pubDate>
  <lastBuildDate>Thu, 29 Jan 2004 16:34:37 +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=9361</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[Wierd thing with quotes, advice please : Simen, Thank you for your help,...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49844.html#49844</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15147">mikebj</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 4:34pm<br /><br /><P>Simen,</P><P>Thank you for your help, I understand now (looked at the database).</P><P>Cheers</P><P>Mike</P>]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 16:34:37 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49844.html#49844</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : no.. usercode ]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49833.html#49833</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12292">Semikolon</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 3:37pm<br /><br />no.. usercode]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 15:37:21 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49833.html#49833</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : If I understand this correctly,...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49832.html#49832</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15147">mikebj</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 3:34pm<br /><br /><P>If I understand this correctly, this will change the username <U>AND </U>the<BR>password right?</P><P>cheers</P><P>Mike</P>]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 15:34:25 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49832.html#49832</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : run this script one time for each...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49820.html#49820</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12292">Semikolon</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 1:47pm<br /><br /><P>run this script one time for each username if you use sql server</P><P><table width="99%"><tr><td><pre class="BBcode">&lt;%<BR>Dim adoCon<BR>Dim strSQL<BR>Dim rsCommon</P><P>Const strDbTable = "tbl"</P><P>Const strSQLServerName = "<FONT color=#ff0000>dataenmin</FONT>"<BR>Const strSQLDBUserName = "<FONT color=#ff0000>sa</FONT>"&nbsp;<BR>Const strSQLDBPassword = "<FONT color=#ff0000>sapw"</FONT><BR>Const strSQLDBName = "<FONT color=#ff0000>WebWizForums</FONT>"</P><P>Set adoCon = Server.CreateObject("ADODB.Connection")</P><P>adoCon.Open "Provider=SQLOLEDB;Server=" &amp; strSQLServerName &amp; ";User ID=" &amp; strSQLDBUserName &amp; ";Password=" &amp; strSQLDBPassword &amp; ";Database=" &amp; strSQLDBName &amp; ";"</P><P>Set rsCommon = Server.CreateObject("ADODB.Recordset")</P><P>strSQL = "SELECT Username, User_code FROM " &amp; strDbTable &amp; "Author WHERE Username = <FONT color=#ff0000>'Old username'</FONT>;"</P><P>rsCommon.CursorType = 2</P><P>rsCommon.LockType = 3</P><P>rsCommon.Open strSQL, adoCon</P><P>rsCommon.Fields("Username") = "<FONT color=#ff0000>New Username</FONT>"<BR>rsCommon.Fields("User_code") = "<FONT color=#ff0000>New Usercode</FONT>"</P><P>rsCommon.Update</P><P>rsCommon.Close<BR>Set rsCommon = Nothing<BR>Set adoCon = Nothing</P><P>Response.Write("Username Updated!")<BR>%&gt;</pre></td></tr></table></P><P>and this if you use access</P><P><table width="99%"><tr><td><pre class="BBcode">&#093;&lt;%<BR>Dim adoCon<BR>Dim strSQL<BR>Dim rsCommon</P><P>Const strDbTable = "tbl"</P><P>Set adoCon = Server.CreateObject("ADODB.Connection")</P><P>adoCon.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &amp; <FONT color=#ff0000>strDbPathAndName</FONT></P><P>Set rsCommon = Server.CreateObject("ADODB.Recordset")</P><P>strSQL = "SELECT Username, User_code FROM " &amp; strDbTable &amp; "Author WHERE Username = <FONT color=#ff0000>'Old username'</FONT>;"</P><P>rsCommon.CursorType = 2</P><P>rsCommon.LockType = 3</P><P>rsCommon.Open strSQL, adoCon</P><P>rsCommon.Fields("Username") = "<FONT color=#ff0000>New Username</FONT>"<BR>rsCommon.Fields("User_code") = "<FONT color=#ff0000>New Usercode</FONT>"</P><P>rsCommon.Update</P><P>rsCommon.Close<BR>Set rsCommon = Nothing<BR>Set adoCon = Nothing</P><P>Response.Write("Username Updated!")<BR>%&gt;</pre></td></tr></table></P><P>change the things in red</P>]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 13:47:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49820.html#49820</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : Thank you for your quick response,...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49816.html#49816</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15147">mikebj</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 1:37pm<br /><br /><P>Thank you for your quick response, I understand what you are saying.</P><P>Now how do I go about changing the names without deleating the users and re create them again.</P><P>I don't want them to loose connection to their posts, I've tried to install Maddogs change Usernames in admin mode, but when you try to logon using the new username, it say error in username or password, so I uninstalled that again, any other way.</P><P>Btw. using wwf 7.7</P><P>Cheers</P><P>Mike</P>]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 13:37:43 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49816.html#49816</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : New versions won&amp;#039;t allow...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49797.html#49797</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 12:40pm<br /><br />New versions won't allow things like &#091; or &#093; in usernames to prevent this type of thing.]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 12:40:22 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49797.html#49797</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : its not the space.. its the ]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49796.html#49796</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12292">Semikolon</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 12:36pm<br /><br />its not the space.. its the &#091; and &#093;]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 12:36:16 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49796.html#49796</guid>
  </item> 
  <item>
   <title><![CDATA[Wierd thing with quotes, advice please : Hi Support, If a person post...]]></title>
   <link>https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49795.html#49795</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15147">mikebj</a><br /><strong>Subject:</strong> 9361<br /><strong>Posted:</strong> 29&nbsp;January&nbsp;2004 at 12:32pm<br /><br /><P>Hi Support,</P><P>If a person post a reply wit a quote, and the name on that quote is like &#091;aaa&#093; Frank, then it truncate it like this in the quote, &#091;aaa wrote</P><P>and then the quote text starts with &#093; Frank.</P><P>I understand that it's because it does not like the space, but how do I repair it to do so, i.e check for start and end of name.</P><P>Any help would be greatly appreciated</P><P>Cheers</P><P>Mike</P>]]>
   </description>
   <pubDate>Thu, 29 Jan 2004 12:32:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/wierd-thing-with-quotes-advice-please_topic9361_post49795.html#49795</guid>
  </item> 
 </channel>
</rss>