/ Published in: ASP
This function returns the number of tabs that you specify as 4 spaces per tab
Expand |
Embed | Plain Text
function getTabs(numTabs) tabs = "" for i = 0 to numTabs tabs = tabs & " " next getTabs = tabs end function
You need to login to post a comment.
