| |
|
KB Article |
Group >>
KB Topic
|
 80 Hits
|
 Error |
1. ASP Classic Error 3709
Run-time error '3709': Operation is not allowed on an object referencing a closed or invalid connection.
7/11/2010
|
ASP Classic >>
Language Details
|
 441 Hits
|
 Code |
2. ASP Classic Edit Record (AddNew, Update, Delete)
Languages Focus: Edit Record
This common syntax name documents editing a record as a wh...
6/24/2010
|
ASP Classic >>
ASP Classic
|
 116 Hits
|
 Code |
3. ASP Classic Yes/No Function
The following function demonstrates one technique for coding a Yes/No dropdown. It uses a for loo...
6/15/2010
|
ASP Classic >>
ASP Classic
|
492 Hits
|
 Code |
4. ASP Classic Array (x = Array())
Arrays in ASP Classic use a 0-based indice.
Use UBound to get the number of elements. UBound returns -1 if the array has no elements, 0 if it has 1, 1 if it has 2, etc.
3/20/2010
|
ASP Classic >>
ASP Classic
|
 345 Hits
|
 Code |
5. ASP Classic Sort Records (Sort)
In ASP, using ADO, you sort a set of records using the Sort property.
2/8/2010
|
ASP Classic >>
ASP Classic
|
 365 Hits
|
 Code |
6. ASP Classic Filter Records (Filter)
In ASP, using ADO, you filter a set of records using Filter.
2/8/2010
|
ASP Classic >>
ASP Classic
|
 337 Hits
|
 Code |
7. ASP Classic Find Record (Find, Seek)
In ASP, using ADO, you use Find and Seek to move a cursor of a RecordSet to a matching record.
2/7/2010
|
ASP Classic >>
ASP Classic
|
 392 Hits
|
 Code |
8. ASP Classic Record Movement (MoveFirst, MoveLast, MoveNext)
Languages Focus: Record Movement
Top, bottom, next, and previous.
|
ASP Classic >>
ASP Classic
|
1002 Hits
|
 Code |
 Article |
|
9. ASP Classic Empty String Check (Len(s&vbNullString))
Languages Focus: Empty String CheckAn empty string is a zero length string, a string tha...
(1 Comments
)
9/17/2009, Updated: 7/21/2010
|
ASP Classic >>
ASP Classic
|
 863 Hits
|
 Code |
 Article |
|
10. ASP Classic Member Visibility (Private, Public)
3/11/2009
|
ASP Classic >>
OOP
|
 868 Hits
|
 Code |
11. ASP Classic Member Modifiers (Default)
Languages Focus: Member ModifierTraditional private, protected<...
3/11/2009
|
ASP Classic >>
OOP
|
 829 Hits
|
 Code |
12. ASP Classic Self Keyword (me)
Same as VB. The Me keyword is a built-in variable that refers to the class where the code is executing.
3/11/2009
|
ASP Classic >>
Language Details
|
 646 Hits
|
 Code |
13. ASP Classic Deployment Overview
ASP Classic Deployment OverviewWith ASP Classic, you simply copy your files to a web ser...
3/11/2009
|
ASP Classic >>
Tool Basics
|
877 Hits
|
 Code |
 KB Post |
|
14. ASP Classic Logical Operators (and, or, not)
Languages Focus: Logical OperatorsLogical operators perform conditional and,
2/11/2009, Updated: 9/15/2009
|
ASP Classic >>
Language Basics
|
928 Hits
|
 Code |
 KB Post |
|
15. ASP Classic Destructor (Class_Terminate)
1/18/2009, Updated: 1/28/2009
|
ASP Classic >>
OOP
|
2130 Hits
|
 Code |
 KB Post |
|
16. ASP Classic Constructors (Class_Initialize)
1/18/2009, Updated: 1/28/2009
|
ASP Classic >>
OOP
|
1399 Hits
|
 Tip |
17. If Statement: No Short Circuit
Short-circuit evaluation is a feature of most languages where once an evaluation evaluates t...
12/30/2008, Updated: 1/14/2009
|
ASP Classic >>
Language Basics
|
 3657 Hits
|
 Code |
 KB Post |
|
18. ASP Classic Associative Array (Scripting.Dictionary)
12/27/2008, Updated: 1/29/2009
|
ASP Classic >>
Language Details
|
 785 Hits
|
 Code |
19. ASP Classic Member Field
ASP Classic does support member fields, but, as usual, you cannot initialize the type nor value of a member field. The type is implied by usage.
12/25/2008, Updated: 1/22/2009
|
ASP Classic >>
OOP
|
 815 Hits
|
 Code |
 KB Post |
|
20. ASP Classic Member Property (Property..Get..Let)
ASP classic uses the property keyword and special Get and Let methods to both get and set the values of properties.
12/21/2008, Updated: 1/29/2009
|
ASP Classic >>
OOP
|
 885 Hits
|
 Code |
21. ASP Classic Member Method (Sub, Function)
12/20/2008, Updated: 1/20/2009
|
ASP Classic >>
OOP
|
 638 Hits
|
 Code |
22. ASP Classic Overview and History
ASP Classic Overview and History
12/18/2008, Updated: 1/2/2009
|
ASP Classic >>
Tool Basics
|
 830 Hits
|
 Code |
23. ASP Classic Constants (Const kPI = 3.1459)
12/16/2008, Updated: 1/24/2009
|
ASP Classic >>
Language Basics
|
 641 Hits
|
 Code |
24. ASP Classic End of Statement (Return)
Languages Focus: End of StatementIn coding languages, common End of statement spe...
12/14/2008, Updated: 1/19/2009
|
ASP Classic >>
Tool Basics
|
 1428 Hits
|
 Code |
 KB Post |
|
25. ASP Classic If Statement (If..ElseIf..Else..End If)
The End If is optional if you put your code on a single line.
12/8/2008, Updated: 3/20/2009
|
ASP Classic >>
Language Basics
|