Monday, November 24, 2003
Good cover letter:
Date: Tue, 18 Nov 2003 06:28:24 -0800 (PST)
From: Mickey *****
Subject: Re: ASP.NET work - you can work from Home
Dear ****:
My interest in the position of ASP.NET programmer has prompted me to forward my resume for your review and
consideration.
As my enclosed resume indicates, I possess more than six years of extensive experience in the software development field. I am one of the first people who earn the new MCSD credential for Microsoft .NET . In addition to possessing expert knowledge of .NET architecture, .NET Framework and C#/VB.NET, I am very proficient in ASP.NET, XML and SQL Server 2000.
I believe that I am particularly well qualified for your position. I look forward to talking to you in the near future.
Sincerely,
Mickey *****
| Post New Message
Date: Tue, 18 Nov 2003 06:28:24 -0800 (PST)
From: Mickey *****
Subject: Re: ASP.NET work - you can work from Home
Dear ****:
My interest in the position of ASP.NET programmer has prompted me to forward my resume for your review and
consideration.
As my enclosed resume indicates, I possess more than six years of extensive experience in the software development field. I am one of the first people who earn the new MCSD credential for Microsoft .NET . In addition to possessing expert knowledge of .NET architecture, .NET Framework and C#/VB.NET, I am very proficient in ASP.NET, XML and SQL Server 2000.
I believe that I am particularly well qualified for your position. I look forward to talking to you in the near future.
Sincerely,
Mickey *****
| Post New Message
Friday, November 14, 2003
To loop over the alphabets, loop over the ASCII values.
<CFLOOP index="loop" FROM="#Asc('A')#" TO="#Asc('Z')#">
<CFOUTPUT>#Chr(loop)#</CFOUTPUT>
</CFLOOP>
OR
<CFLOOP index="loop" FROM="65" TO="90">
<CFOUTPUT>#Chr(loop)#</CFOUTPUT>
</CFLOOP>
| Post New Message
<CFLOOP index="loop" FROM="#Asc('A')#" TO="#Asc('Z')#">
<CFOUTPUT>#Chr(loop)#</CFOUTPUT>
</CFLOOP>
OR
<CFLOOP index="loop" FROM="65" TO="90">
<CFOUTPUT>#Chr(loop)#</CFOUTPUT>
</CFLOOP>
| Post New Message