<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog :: john collette &#187; Uncategorized</title>
	<atom:link href="http://www.johncollette.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johncollette.com</link>
	<description>global views from a down to earth perspective</description>
	<lastBuildDate>Thu, 18 Feb 2010 22:50:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Back in the Blogosphere</title>
		<link>http://www.johncollette.com/uncategorized/back-in-the-blogosphere/</link>
		<comments>http://www.johncollette.com/uncategorized/back-in-the-blogosphere/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 08:39:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog setup]]></category>

		<guid isPermaLink="false">http://www.johncollette.com/uncategorized/back-on-in-the-blogosphere/</guid>
		<description><![CDATA[After a long break from blogging. I&#8217;ve decided it&#8217;s time to get with the program and share some knowledge with the rest of the world. My inspiration comes from all the other wonderful blog&#8217;s I&#8217;ve been reading. They have provided me with valuable incite and assistance on the development work I&#8217;ve been immersed in. So [...]]]></description>
			<content:encoded><![CDATA[<p>After a long break from blogging. I&#8217;ve decided it&#8217;s time to get with the program and share some knowledge with the rest of the world. My inspiration comes from all the other wonderful blog&#8217;s I&#8217;ve been reading. They have provided me with valuable incite and assistance on the development work I&#8217;ve been immersed in. So here we go &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johncollette.com/uncategorized/back-in-the-blogosphere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimialist Theme</title>
		<link>http://www.johncollette.com/uncategorized/minimialist-theme/</link>
		<comments>http://www.johncollette.com/uncategorized/minimialist-theme/#comments</comments>
		<pubDate>Tue, 22 May 2007 01:08:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[good design]]></category>

		<guid isPermaLink="false">http://www.johncollette.com/uncategorized/minimialist-theme/</guid>
		<description><![CDATA[I&#8217;ve decided to go basic and get rid of all the fancy colors and distractions. In order to simplify. Hope you enjoy the Minimalism 
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to go basic and get rid of all the fancy colors and distractions. In order to simplify. Hope you enjoy the Minimalism </p>
]]></content:encoded>
			<wfw:commentRss>http://www.johncollette.com/uncategorized/minimialist-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old School ASP error trap + ASP CDO email with authentication</title>
		<link>http://www.johncollette.com/uncategorized/old-school-asp-error-trap-asp-cdo-email-with-authentication/</link>
		<comments>http://www.johncollette.com/uncategorized/old-school-asp-error-trap-asp-cdo-email-with-authentication/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 19:48:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asp classic]]></category>

		<guid isPermaLink="false">http://www.johncollette.com/uncategorized/old-school-asp-error-trap-asp-cdo-email-with-authentication/</guid>
		<description><![CDATA[Wow is this old and dusty
Here is the Whole deal:
You pass in the name, email, subject &#038; body
action=test  &#8212; will alow you too switch to an alernate test config for debuging

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
&#160;
&#160;
'Option Explicit
On Error Resume Next
&#160;
	Dim strName, strFrom, strSubject, strBody, strAction, SMTPServer, SMTPUser, SMTPpass, mailTo 
&#160;
		strName = &#34;&#34;
		strFrom = &#34;&#34;
		strSubject = &#34;&#34; 
		strBody = &#34;&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Wow is this old and dusty</p>
<p>Here is the Whole deal:</p>
<p>You pass in the name, email, subject &#038; body</p>
<p>action=test  &#8212; will alow you too switch to an alernate test config for debuging</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
</pre></td><td class="code"><pre class="asp" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #008000;">'Option Explicit</span>
<span style="color: #990099; font-weight: bold;">On</span> <span style="color: #990099; font-weight: bold;">Error</span> <span style="color: #990099; font-weight: bold;">Resume</span> <span style="color: #990099; font-weight: bold;">Next</span>
&nbsp;
	<span style="color: #990099; font-weight: bold;">Dim</span> strName, strFrom, strSubject, strBody, strAction, SMTPServer, SMTPUser, SMTPpass, mailTo 
&nbsp;
		strName <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span>
		strFrom <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span>
		strSubject <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span> 
		strBody <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span> 
		strAction <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span>	
&nbsp;
	strAction <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">Querystring</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;action&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	strName <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">Querystring</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;name&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	strFrom <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">Querystring</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;emailfrom&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	<span style="color: #008000;">'strTo = trim(Request.Querystring(&quot;emailto&quot;))</span>
	strSubject <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">Querystring</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;emailsubject&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	strBody <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">Querystring</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;emailbody&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
&nbsp;
&nbsp;
&nbsp;
<span style="color: #990099; font-weight: bold;">if</span> <span style="color: #330066;">instr</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">1</span>, strFrom , <span style="color: #cc0000;">&quot;@&quot;</span>, <span style="color: #800000;">1</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&lt;</span> <span style="color: #800000;">1</span> <span style="color: #0000ff; font-weight: bold;">or</span> <span style="color: #330066;">instr</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">1</span>, strFrom, <span style="color: #cc0000;">&quot;.&quot;</span>, <span style="color: #800000;">1</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&lt;</span> <span style="color: #800000;">1</span> <span style="color: #0000ff; font-weight: bold;">or</span> strName <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span>   <span style="color: #990099; font-weight: bold;">then</span>
&nbsp;
	<span style="color: #008000;">'Do some validation error response - dont send email</span>
	<span style="color: #008000;">'errormessage = &quot;&lt;font color='ff0000' size='3'&gt;Please fill out your name and email address!&lt;/font&gt;&lt;br&gt;&lt;br&gt;&quot;</span>
	<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;not_valid&quot;</span>
&nbsp;
<span style="color: #990099; font-weight: bold;">else</span>
&nbsp;
&nbsp;
	<span style="color: #990099; font-weight: bold;">Set</span> cdoConfig <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">CreateObject</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;CDO.Configuration&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>  
&nbsp;
&nbsp;
	<span style="color: #990099; font-weight: bold;">Const</span> cdoSendUsingPickup <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">1</span> 
	<span style="color: #990099; font-weight: bold;">Const</span> cdoSendUsingPort <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">2</span> 
	<span style="color: #990099; font-weight: bold;">Const</span> cdoAnonymous <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">0</span>
	<span style="color: #008000;">' Use basic (clear-text) authentication. </span>
	<span style="color: #990099; font-weight: bold;">Const</span> cdoBasic <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">1</span>
	<span style="color: #008000;">' Use NTLM authentication </span>
	<span style="color: #990099; font-weight: bold;">Const</span> cdoNTLM <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">2</span> <span style="color: #008000;">'NTLM</span>
&nbsp;
&nbsp;
	<span style="color: #990099; font-weight: bold;">if</span> strAction <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;test&quot;</span> <span style="color: #990099; font-weight: bold;">then</span>
&nbsp;
<span style="color: #008000;">' test user</span>
&nbsp;
	 SMTPServer <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;mail.yourserver.com&quot;</span> 
	 SMTPUser <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;webform@yourserver.com&quot;</span>
	 SMTPpass <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;password&quot;</span>
	 mailTo <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;user@yourserver.com&quot;</span>
&nbsp;
&nbsp;
	<span style="color: #990099; font-weight: bold;">else</span>
&nbsp;
&nbsp;
	 SMTPServer <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;mail.yourserver.com&quot;</span> 
	 SMTPUser <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;webform@yourserver.com&quot;</span>
	 SMTPpass <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;password&quot;</span>
	 mailTo <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;user@yourserver.com&quot;</span>
&nbsp;
&nbsp;
	<span style="color: #990099; font-weight: bold;">end</span> <span style="color: #990099; font-weight: bold;">if</span>
&nbsp;
&nbsp;
    <span style="color: #990099; font-weight: bold;">With</span> cdoConfig.<span style="color: #330066;">Fields</span>  
        .<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>  <span style="color: #006600; font-weight: bold;">=</span> cdoSendUsingPickup
        .<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpserver&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> SMTPServer 
		.<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> cdoBasic
		.<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/sendusername&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> SMTPUser
		.<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/sendpassword&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> SMTPpass
		.<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpserverport&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">25</span>
		.<span style="color: #9900cc;">Item</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">60</span>
        .<span style="color: #9900cc;">Update</span>  
    <span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">With</span>  
&nbsp;
&nbsp;
&nbsp;
    <span style="color: #990099; font-weight: bold;">Set</span> cdoMessage <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">CreateObject</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;CDO.Message&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>  
&nbsp;
    <span style="color: #990099; font-weight: bold;">With</span> cdoMessage  
        <span style="color: #990099; font-weight: bold;">Set</span> .<span style="color: #9900cc;">Configuration</span> <span style="color: #006600; font-weight: bold;">=</span> cdoConfig  
        .<span style="color: #9900cc;">From</span> <span style="color: #006600; font-weight: bold;">=</span> SMTPUser <span style="color: #008000;">'request.form(&quot;youremail&quot;)</span>
        .<span style="color: #990099; font-weight: bold;">To</span> <span style="color: #006600; font-weight: bold;">=</span> mailTo  
        .<span style="color: #9900cc;">Subject</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;CONTACT YOURDOMAIN.COM&quot;</span> 
&nbsp;
					message <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;Below is the result of your Contact us form, It was submitted on &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> formatdatetime<span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #330066;">now</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #006600; font-weight:bold;">&#41;</span>,vbLongDate<span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;Name: &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> strName <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;Email: &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> strFrom <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;Subject: &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> strSubject <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;Message: &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> strBody <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
&nbsp;
					message <span style="color: #006600; font-weight: bold;">=</span> message + <span style="color: #cc0000;">&quot;___________________________________________________________&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message + <span style="color: #cc0000;">&quot;IP Address : &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">ServerVariables</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Remote_Addr&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> vbCrLf
					message <span style="color: #006600; font-weight: bold;">=</span> message + <span style="color: #cc0000;">&quot;End&quot;</span>
&nbsp;
&nbsp;
        .<span style="color: #9900cc;">TextBody</span> <span style="color: #006600; font-weight: bold;">=</span> message  
        .<span style="color: #330066;">Send</span> 
    <span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">With</span> 
&nbsp;
&nbsp;
&nbsp;
    <span style="color: #990099; font-weight: bold;">Set</span> cdoMessage <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">Nothing</span>  
    <span style="color: #990099; font-weight: bold;">Set</span> cdoConfig <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">Nothing</span>  
&nbsp;
&nbsp;
<span style="color: #990099; font-weight: bold;">end</span> <span style="color: #990099; font-weight: bold;">if</span>
&nbsp;
&nbsp;
&nbsp;
<span style="color: #990099; font-weight: bold;">If</span> err.<span style="color: #9900cc;">Number</span> <span style="color: #006600; font-weight: bold;">&lt;&gt;</span> <span style="color: #800000;">0</span> <span style="color: #990099; font-weight: bold;">Then</span>
  <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #cc0000;">&quot;ID = &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;1&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;&lt;p&gt;&quot;</span>
  <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #cc0000;">&quot;Number = &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> err.<span style="color: #9900cc;">Number</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;&lt;p&gt;&quot;</span>
  <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #cc0000;">&quot;Description = &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> err.<span style="color: #9900cc;">Description</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;&lt;p&gt;&quot;</span>
  <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #cc0000;">&quot;Source = &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> err.<span style="color: #9900cc;">Source</span>
  <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #cc0000;">&quot;&lt;BR&gt;&quot;</span>
  err.<span style="color: #330066;">Clear</span>
<span style="color: #990099; font-weight: bold;">else</span> 
&nbsp;
<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;OK&quot;</span>
&nbsp;
<span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">If</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.johncollette.com/uncategorized/old-school-asp-error-trap-asp-cdo-email-with-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.johncollette.com/uncategorized/hello-world/</link>
		<comments>http://www.johncollette.com/uncategorized/hello-world/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 23:03:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johncollette.com/uncategorized/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
