Home
Search
Tell a Friend
ABS() Array() ASC() CHR() CInt() CStr() Date() DateAdd() DateDiff() DatePart() DateSerial() DateValue() Day() Fix() FormatCurrency() FormatDateTime() FormatNumber() FormatPercent() Hour() InStr() InStrRev() Int() IsArray() IsDate() IsEmpty() IsNull() IsNumeric() IsObject() Join() LBound() LCase() Left() Len() LTrim() Mid() Minute() Month() MonthName() Now() Replace() RGB() Right() Rnd() Round() RTrim() Second() Space() Split() Sqr() strComp() String() StrReverse() Time() TimeSerial() TimeValue() TypeName() UBound() UCase() VarType() WeekDay() WeekDayName() Year()
|
Space() Purpose:Returns a String consisting of the specified number of spaces. DataType:String Syntax:Space(Number) Arguments:"number" is any integer Sample: response.write """" & Space(10) & """" Result: " " Comments:There are actually 10 spaces created between the pair of quotation mark. However, you can't see it because HTML truncates any multiple spaces to one. To see it, view the source of this page by right click on your mouse. Date Added: 1/9/2001
|