<?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="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Spam Filter ISP Forums : Error when trying to change password on ASP page</title>
  <link>https://www.logsat.com/spamfilter/forums/</link>
  <description><![CDATA[This is an XML content feed of; Spam Filter ISP Forums : Spam Filter ISP Support : Error when trying to change password on ASP page]]></description>
  <pubDate>Wed, 11 Mar 2026 06:36:26 +0000</pubDate>
  <lastBuildDate>Tue, 16 Nov 2004 17:05:00 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.logsat.com/spamfilter/forums/RSS_post_feed.asp?TID=1601</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Spam Filter ISP Forums]]></title>
   <url>https://www.logsat.com/spamfilter/forums/forum_images/web_wiz_forums.png</url>
   <link>https://www.logsat.com/spamfilter/forums/</link>
  </image>
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : I have solved the problem....  The...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=4580&amp;title=error-when-trying-to-change-password-on-asp-page#4580</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 16 November 2004 at 5:05pm<br /><br /><DIV>I have solved the problem....</DIV><DIV>&nbsp;</DIV><DIV>The correct code is:</DIV><DIV>&nbsp;</DIV><DIV><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp; SQL = "UPDATE tblLogins "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "SET &#091;Password&#093; = '" &amp; Replace(NewPassword,"'","''") &amp; "' "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "WHERE EMail = '" &amp; Replace(EmailTo,"'","''") &amp; "'"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;con.Execute SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Redirect "ListSpam.asp"</FONT></DIV><DIV><FONT size=1></FONT>&nbsp;</DIV><DIV><FONT size=1>Changing passwords now works.....</FONT></DIV>]]>
   </description>
   <pubDate>Tue, 16 Nov 2004 17:05:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=4580&amp;title=error-when-trying-to-change-password-on-asp-page#4580</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : I too am struggling with getting...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=4574&amp;title=error-when-trying-to-change-password-on-asp-page#4574</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 15 November 2004 at 11:29pm<br /><br /><P>I too am struggling with getting the ASP page to change the password. I have tried everything that I can find in the forums, but what I end up with is and error message at the top of the password change box:</P><P>"UPDATE tblLogins SET &#091;Password&#093; = 'cat123' WHERE EMail = 'robegusn@central.btps.ca' "</P><P>I know that it is reading the "old" password because if I enter an incorrect password it gives the correct message - same goes if the "new" passwords don't match - I get an error message.&nbsp; The problem seems to be updating the database with the new password.</P><P>The contents of my db_connect.asp:</P><P>Set con = Server.CreateObject("ADODB.Connection")<BR>&nbsp;con.ConnectionTimeout = 10<BR>&nbsp;con.CommandTimeout = 30<BR>&nbsp;con.CursorLocation = 3<BR>&nbsp;con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\SpamFilter\Database\SpamFilter.mdb;Persist Security Info=False"</P><P>The contents of PasswordChange.asp:</P><P>&lt;!--#include file="authenticate.asp"--&gt;<BR>&lt;%<BR>&nbsp;EmailTo = Session("EmailTo")</P><P>&nbsp;'Theoretically, this should never happen.<BR>&nbsp;If Len(EmailTo) &lt; 1 Then<BR>&nbsp;&nbsp;Session("EmailTo") = Null<BR>&nbsp;&nbsp;Session.Abandon<BR>&nbsp;&nbsp;Response.Redirect "ListSpam.asp"<BR>&nbsp;End If</P><P>&nbsp;OldPassword = Request.Form("OldPassword")</P><P>&nbsp;If Len(OldPassword) Then<BR>&nbsp;&nbsp;NewPassword = Request.Form("NewPassword")<BR>&nbsp;&nbsp;ConfirmNewPassword = Request.Form("ConfirmNewPassword")</P><P>&nbsp;&nbsp;If Len(NewPassword) &lt; 6 Then<BR>&nbsp;&nbsp;&nbsp;ErrorMessage = "New Password was too short!"<BR>&nbsp;&nbsp;ElseIf NewPassword &lt;&gt; ConfirmNewPassword Then<BR>&nbsp;&nbsp;&nbsp;ErrorMessage = "New Password and Confirm New Password did not match!"<BR>&nbsp;&nbsp;ElseIf OldPassword = NewPassword Then<BR>&nbsp;&nbsp;&nbsp;ErrorMessage = "New Password was the same as Old Password!"<BR>&nbsp;&nbsp;Else<BR>&nbsp;&nbsp;&nbsp;SQL = "SELECT Password "<BR>&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "FROM tblLogins "<BR>&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "WHERE EMail = '" &amp; EmailTo &amp; "'"<BR>&nbsp;&nbsp;&nbsp;Set rs = con.Execute(SQL)</P><P>&nbsp;&nbsp;&nbsp;If Not rs.EOF Then</P><P>&nbsp;&nbsp;&nbsp;&nbsp;If rs("Password") &lt;&gt; OldPassword Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ErrorMessage = "Old Password was incorrect!"<BR>&nbsp;&nbsp;&nbsp;&nbsp;Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = "UPDATE tblLogins "<BR>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "SET Password = '" &amp; Replace(NewPassword,"'","''") &amp; "' "<BR>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "WHERE EMail = '" &amp; Replace(EmailTo,"'","''") &amp; "'"<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;response.write SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'con.Execute SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Response.Redirect "ListSpam.asp"<BR>&nbsp;&nbsp;&nbsp;&nbsp;End If</P><P>&nbsp;&nbsp;&nbsp;'This should also never happen.<BR>&nbsp;&nbsp;&nbsp;Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;Session("EmailTo") = Null<BR>&nbsp;&nbsp;&nbsp;&nbsp;Session.Abandon<BR>&nbsp;&nbsp;&nbsp;&nbsp;Response.Redirect "ListSpam.asp"<BR>&nbsp;&nbsp;&nbsp;End If</P><P>&nbsp;&nbsp;End If</P><P>&nbsp;End If<BR>%&gt;<BR>&lt;html&gt;<BR>&lt;head&gt;<BR>&nbsp;&lt;title&gt;Spam Filter - Password Change Form&lt;/title&gt;<BR>&lt;/head&gt;<BR>&lt;body&gt;<BR>&nbsp;&lt;form method="post" name="PasswordChange"&gt;<BR>&nbsp;&lt;table align="center" border="1" cellpadding="1" cellspacing="1"&gt;<BR>&lt;%<BR>&nbsp;If Len(ErrorMessage) Then<BR>%&gt;&nbsp;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="center" colspan="2"&gt;&lt;span style="color:red"&gt;&lt;%=ErrorMessage%&gt;&lt;/span&gt;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&lt;%<BR>&nbsp;End If<BR>%&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="center" colspan="2"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;h2&gt;Password Change For&lt;/h2&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;%=EmailTo%&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="right"&gt;Old Password:&lt;/td&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td&gt;&lt;input type="password" size="15" name="OldPassword"&gt;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="right"&gt;New Password:&lt;/td&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td&gt;&lt;input type="password" size="15" name="NewPassword"&gt;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="right"&gt;Confirm New Password:&lt;/td&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td&gt;&lt;input type="password" size="15" name="ConfirmNewPassword"&gt;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;td align="center" colspan="2"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" value="Change Password"&gt;&amp;nbsp;&amp;nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="reset" value="Clear"&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/td&gt;<BR>&nbsp;&nbsp;&lt;/tr&gt;<BR>&nbsp;&lt;/table&gt;<BR>&nbsp;&lt;/form&gt;<BR>&lt;/body&gt;<BR>&lt;/html&gt;<BR></P><P>I have also explicitly given the IIS (anonymous) user rights to the database and the directory containing the database.&nbsp; Everything appears to be working except the change password feature.</P><P>I did make minor "cosmetic" changes to authenticate.asp, but since I can login I am assuming everything is OK.</P><P>If anyone can help with this - thanks in advance......</P><P>Robert</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 15 Nov 2004 23:29:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=4574&amp;title=error-when-trying-to-change-password-on-asp-page#4574</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : To know the ADO version save this...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1643&amp;title=error-when-trying-to-change-password-on-asp-page#1643</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 07 August 2003 at 11:18am<br /><br /><P>To know the ADO version save this to an "ado.vbs" file, and run it from command prompt:</P><P><FONT face="Courier, Century" size=2>On Error Resume Next<BR>Set oConn = CreateObject("ADODB.Connection")<BR>If Err.Number = 0 Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; msgbox("ADO verzió : " + oConn.Version)<BR>Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; msgbox("Nincs ADOja!")<BR>End If</FONT><BR></P><P>Or right click on this file, and view the properties:</P><P>"C:\Program Files\Common Files\System\ado\msado15.dll" </P><P>&nbsp;</P><P>But I think, you use ODBC.</P><P>The Microsoft says: Use the native JET driver.</P><P>The connectionstring to try this:</P><P>Provider=Microsoft.Jet.OLEDB.4.0;Password="";Data Source=C:\Program Files\SpamFilter\Database\SpamFilter.mdb;Persist Security Info=True</P><P>And the directory of the mdb must have access rights for IIS_USER. (Read, write...)</P><P>And if the problem exist after these, please write here, or send me the all SQL string.</P><P>(Write into the passwordchange.asp :</P><P>Before:</P><P><FONT face="Courier, Century" size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = "UPDATE tblLogins "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "SET Password = '" &amp; Replace(NewPassword,"'","''") &amp; "' "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "WHERE EMail = '" &amp; Replace(EmailTo,"'","''") &amp; "'"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;con.Execute SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Redirect "ListSpam.asp"</FONT></P><P>After:</P><P><FONT face="Courier, Century" size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = "UPDATE tblLogins "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "SET Password = '" &amp; Replace(NewPassword,"'","''") &amp; "' "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL = SQL &amp; "WHERE EMail = '" &amp; Replace(EmailTo,"'","''") &amp; "'"<BR>&nbsp;&nbsp;&nbsp;&nbsp; response.write SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'con.Execute SQL<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Response.Redirect "ListSpam.asp"</FONT></P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 07 Aug 2003 11:18:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1643&amp;title=error-when-trying-to-change-password-on-asp-page#1643</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : I have a couple of versions for...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1642&amp;title=error-when-trying-to-change-password-on-asp-page#1642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 07 August 2003 at 11:01am<br /><br /><P>I have a couple of versions for MDAC installed so a little hard to tell but if I am reading the component checker corretly looks like my ODBC comes from version 2.7.</P><P>Like I said it is working now that I made the change I posted before.</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 07 Aug 2003 11:01:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1642&amp;title=error-when-trying-to-change-password-on-asp-page#1642</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : What version os ADO and JET do...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1638&amp;title=error-when-trying-to-change-password-on-asp-page#1638</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 07 August 2003 at 5:59am<br /><br /><P>What version os ADO and JET do you use?</P><P>What is the connection string?</P><P>(I think, you use ODBC, but the good is the native ADO-JET driver.)</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 07 Aug 2003 05:59:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1638&amp;title=error-when-trying-to-change-password-on-asp-page#1638</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : Okay got it fixed. Did some searching...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1616&amp;title=error-when-trying-to-change-password-on-asp-page#1616</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 05 August 2003 at 1:39pm<br /><br /><P>Okay got it fixed.&nbsp; Did some searching on web and found that the error message could happen if a reserved word was used in a field name, password was the problem.&nbsp; So that a reserved&nbsp;word could be used &nbsp;I changed:</P><P>SQL = SQL &amp; "Set Password&nbsp; =</P><P>TO:</P><P>SQL = SQL &amp; "Set &#091;Password&#093; =</P><P>And that fixed the problem.</P><P>Happy Modeming</P><P>Hillard</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 05 Aug 2003 13:39:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1616&amp;title=error-when-trying-to-change-password-on-asp-page#1616</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : No not using special characters,...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1611&amp;title=error-when-trying-to-change-password-on-asp-page#1611</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 05 August 2003 at 12:49pm<br /><br /><P>No not using special characters, edited anyhow as you showed just to see if it would help; however, it did not.&nbsp; Any other things for me to look at or try?</P><P>Happy Modeming</P><P>Hillard</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 05 Aug 2003 12:49:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1611&amp;title=error-when-trying-to-change-password-on-asp-page#1611</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : Did you use any special character...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1608&amp;title=error-when-trying-to-change-password-on-asp-page#1608</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 05 August 2003 at 5:15am<br /><br /><P>Did you use any special character in the new or the old password (like apostrophe)?</P><P>(If yes, and you would like to use it, in the&nbsp;PasswordChange.asp change the lines below:</P><P>From (two-times):</P><P>&nbsp;<FONT face="Courier, Century" size=1>SQL = SQL &amp; "WHERE EMail = '" &amp; EmailTo &amp; "'"</FONT></P><P>To:</P><P><FONT face="Courier, Century" size=1>SQL = SQL &amp; "WHERE EMail = '" &amp; Replace(EmailTo,"'","''") &amp; "'"</FONT></P><P>And:</P><P><FONT face="Courier, Century" size=1>SQL = SQL &amp; "SET Password = '" &amp; NewPassword &amp; "' "</FONT></P><P>To:</P><P><FONT face="Courier, Century" size=1>SQL = SQL &amp; "SET Password = '" &amp; Replace(NewPassword,"'","''") &amp; "' "</FONT></P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 05 Aug 2003 05:15:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1608&amp;title=error-when-trying-to-change-password-on-asp-page#1608</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : Yes the error is exactly as I...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1603&amp;title=error-when-trying-to-change-password-on-asp-page#1603</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 04 August 2003 at 3:52pm<br /><br /><P>Yes the error is exactly as I did it in the post, I copied and pasted the entire browser window in the message.&nbsp; I know I normally see line numbers also when I have gotten some ASP errors on other pages.</P><P>Great product by the way.</P><P>Happy Modeming</P><P>Hillard</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 04 Aug 2003 15:52:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1603&amp;title=error-when-trying-to-change-password-on-asp-page#1603</guid>
  </item> 
  <item>
   <title><![CDATA[Error when trying to change password on ASP page : Hillard, Is the error message...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1602&amp;title=error-when-trying-to-change-password-on-asp-page#1602</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 1601<br /><strong>Posted:</strong> 04 August 2003 at 3:45pm<br /><br /><P>Hillard,</P><P>Is the error message you posted on the forum <EM>exactly </EM>as it appears on the browser? I'm asking since usually the line number that causes the error is&nbsp;reported along with the rest of the info, but it does not appear in your posting.</P><P>Roberto F.<BR>LogSat Software&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 04 Aug 2003 15:45:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1601&amp;PID=1602&amp;title=error-when-trying-to-change-password-on-asp-page#1602</guid>
  </item> 
 </channel>
</rss>