Prestwood eMag
Our monthly opt-in coupons+newsletter.
|
portal.prestwood.com
|
|
March 2009 - ASP Classic Edition
|
Year 11 Issue 3
|
|
|
|
Your full service technology partner!
|
|
Expert guidance from working professionals!
Wes Peterson
|
Internet Marketing topic:
Make Other Web Sites Drive Up Yours: Do-it right!
by Wes Peterson
Having lots of other web sites host links to your site is a great way to make search engines regard your site as important, or relevant. It helps ensure high visibility for your site when Internet visitors use search providers to find content related to your site.
There are several ways to accomplish this, but you must tread carefully: The wrong techniques can backfire - with serious consequences.
WinForms topic (classic post):
A 10 Minute C# Winforms Quick Start by Mike Prestwood
The ButtonsCS project. Create a classic "Hello, World" application using Visual Studio .Net with C# syntax. Requires either the full version or Visual C# Express Edition.
IT Water-Cooler for Power-Users topic (classic post):
Work Ethic v2: Attention Control by Wes Peterson
Work Ethic v1 was about working hard, and working long. Straw-boss managers tried to boost productivity by cracking the whip. And it worked, up to a point, in certain sectors.
In recent years, the concept of "working smarter, not harder" has gained acceptance. It is, howver, just the harbinger of Work Ethic v2.
Work Ethic v2 is about an always "on" work force: People that have mastered control of attention, and are gratified by being in "the now."
Here we talk about how to get there.
|
Monthly ASP Classic Lesson
|
|
OOP Topic:
Code Snippet of the Month
ASP classic uses the property keyword and special Get and Let methods to both get and set the values of properties.
Class Cyborg
Private FCyborgName
Public Property Get CyborgName()
CyborgName = FCyborgName
End Property
Public Property Let CyborgName(pCyborgName)
FCyborgName = pCyborgName
End Property
End Class
ASP Classic Topic:
Question: What does VBScript stand for?
Answer: VBScript is short for Visual Basic Scripting. VBScript brings scripting to a wide variety of environments, including Web client scripting in Microsoft Internet Explorer and Web server scripting in Microsoft Internet Information Service. It is used in Visual Basic, Access, Word, Excel, ASP, etc.
Language Basics Topic:
Tip of the Month
Short-circuit evaluation is a feature of most languages where once an evaluation evaluates to False, the compiler evaluates the whole expression to False, exits and moves on to the next code execution line. The ASP Classic if statement does not support short-circuit evaluation but you can mimic it. Use either an if..else if..else if statement or nested if statements. ASP code that makes use of this technique is frequenlty clearer and easier to maintain than the short-circuit equivalent.
|
|
Editor's Final Word
|
If you have an apple and I have an apple and we exchange apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas.
George Bernard Shaw
|
|