Wednesday, December 03, 2003
Get the form to submit on its own:
<script type="text/javascript" language="JavaScript1.2">
document.forms[0].submit();
</script>
| Post New Message
<script type="text/javascript" language="JavaScript1.2">
document.forms[0].submit();
</script>
| Post New Message
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
Tuesday, September 02, 2003
Transact SQL: programming language, close to scripting language
Transact SQL is based on SQL-92 standard (fully compliant)
It is the standard for SQL language setting up by American National Standard Institute (ANSI) and International Standards Organization (ISO)
Transact SQL is an extension to standard SQL utilized by Microsoft and Sybase.
Row processing or declarative evaluates every single piece of data.
Set processing or procedural works on sets or ranges.
T is for Transaction
Databases start in the late 1960's
Mainframe has two types: hierarchical and non-relational databases
Dr. E.F. Codd gave birth to the relational database in 1970.
12 Principles of Relational Databases by Dr. Codd in 1974. It is actually 13.
Early 1990's: Ashton Tate's dBase came out
Then Microsoft Access
IBM developed in the mid 1970's
SQL-89 or SQL -1 is the first standard
SEQUEL: Structured English Query Language changed to SQL for legal issues (Structured Query Language)
Oracle was the first company to bring a SQL based RDMS (Sequel based relational database management system) to the market.
SQL-99 or Sequel 3
Pinning: placing objects usually tables in RAM
RDBMS: Relational Management System
BCP: Bulk Copy Program
ODBC & OLE DB: Database Access API's
SARG: Searchable Argument comes after the where clause to tell the database where to look for
DBCC: family of commands for database consistency checker such as maintainance, troubleshooting, investigating, or tasks issues
GUID: Globally Unique Identifier
BLOB: Binary Large Object stores up to 2GB
| Post New Message
Transact SQL is based on SQL-92 standard (fully compliant)
It is the standard for SQL language setting up by American National Standard Institute (ANSI) and International Standards Organization (ISO)
Transact SQL is an extension to standard SQL utilized by Microsoft and Sybase.
Row processing or declarative evaluates every single piece of data.
Set processing or procedural works on sets or ranges.
T is for Transaction
Databases start in the late 1960's
Mainframe has two types: hierarchical and non-relational databases
Dr. E.F. Codd gave birth to the relational database in 1970.
12 Principles of Relational Databases by Dr. Codd in 1974. It is actually 13.
Early 1990's: Ashton Tate's dBase came out
Then Microsoft Access
IBM developed in the mid 1970's
SQL-89 or SQL -1 is the first standard
SEQUEL: Structured English Query Language changed to SQL for legal issues (Structured Query Language)
Oracle was the first company to bring a SQL based RDMS (Sequel based relational database management system) to the market.
SQL-99 or Sequel 3
Pinning: placing objects usually tables in RAM
RDBMS: Relational Management System
BCP: Bulk Copy Program
ODBC & OLE DB: Database Access API's
SARG: Searchable Argument comes after the where clause to tell the database where to look for
DBCC: family of commands for database consistency checker such as maintainance, troubleshooting, investigating, or tasks issues
GUID: Globally Unique Identifier
BLOB: Binary Large Object stores up to 2GB
| Post New Message
Sunday, August 31, 2003
Software Development Life Cycle: "Rapid Application Development (RAD) Model
The RAD is a linear sequential software development process that emphasizes an extremely short development cycle. The RAD model is a 'high speed' adaptation of the linear sequential model in which rapid development is achieved by using a component-based construction approach. Used primarily for information systems applications,"
| Post New Message
The RAD is a linear sequential software development process that emphasizes an extremely short development cycle. The RAD model is a 'high speed' adaptation of the linear sequential model in which rapid development is achieved by using a component-based construction approach. Used primarily for information systems applications,"
| Post New Message