PHP - Lesson 3 (November 28th, 2007)

PowerPoint slides and examples all in one archive.

using System.Net.Mail;

Seeing how our ASP.net book doesn’t say anything about System.Net.Mail,
I found this great resource with information: http://www.systemnetmail.com
You may also be interested in the differences between System.Web.Mail and System.Net.Mail, so take a look at the following website
Good luck,
-Anna

Macromedia Dreamweaver Keyboard Shortcuts

Love it or hate it, Dreamweaver is the de facto standard for web development and is used by many, many organizations. Here’s a document with all the Dreamweaver keyboard shortcuts to save you time and make you more productive.
Nik

Web Design Survey 2007

A List Apart has compiled statistics on web designers/ developers for 2007. Information on industry education levels, salary, and titles are all presented. All in all a very interesting read.
http://www.alistapart.com/d/2007surveyresults/2007surveyresults.pdf
Nik

PHP - Lesson 2 (November 21st, 2007)

I am posting the SQL file with structure and sample data ahead of time so you can take a look at it before the class. It’s not mandatory, but it will give you an idea of what we are going to discuss. It’s very simple - just one table with 4 fields (id, fname, lname, [...]

PHP - Lesson 1 (November 14th, 2007)

Slides: PHP - Lesson 1 (November 14th, 2007)
XAMPP Download
Example PHP files. I had to upload these somewhere else, because WP.com won’t allow .zip files. These are not exactly the same files that I was doing in class. I cleaned them up and incorporated everything we’ve talked about. I also included a bunch of comments. If [...]

Free Computer Books, Tutorials, Lecture Notes

Hi fellow programmers,
I found a great website where you can find HTML versions of some computer books.
http://freecomputerbooks.com
Hope it helps with studying.
–Anna.

Formal Writing tips

Hi all,
I talked to one of my coworkers, who has written many formal reports, and he suggested I take a look at the following link for tips:
http://www.pro-technical-writing.com/business-report-writing.html
Have fun,
–Anna

Web Programming Languages 1 Midterm 2 Lab

Four Types of Errors to Expect

COMPILE ERRORS - Will see in compiler
DESIGN ERRORS - Check forms, html etc.
LOGIC ERRORS - Conditions etc
RUNTIME ERRORS

Examples of Errors:
Error:
Operator == cannot be applied to operands of type ’string’ and ‘int’
if (txtLastName.Text == 0)
Answer:
if (txtLastName.Text.Trim().Length == 0)
Using Trim() removes trailing whitespace. (Best Answer)
Using Length (Good Answer)
txtLastName.Text [...]