Click to See Complete Forum and Search --> : Need Tab Character syntax Real Quick!!!


MikeMedia
04-13-2007, 11:27 AM
<script language="vb" runat="server">

This is what I've got:
textdelimiter = ","

This is what I need:
textdelimiter = Whatever it is that means "TAB"

gil davis
04-13-2007, 12:12 PM
A tab is chr(9).

SitesForYou.Org
04-13-2007, 12:36 PM
try:

<script language="vb" runat="server">
textdelimiter = Chr(9)

or
textdelimiter = #9

or
textdelimiter = 0x09

those are the ASCII character codes... I don't know which one will work in vbscript in html...