I don't believe VBScript has a Format function... But you could do it this way:
VB Code:
SSN = "999999999" fSSN = mid(SSN, 1, 3) & "-" & mid(SSN, 4, 2) & "-" & mid(SSN, 7, 4) response.write(fSSN)
|
Results 1 to 4 of 4
Thread: Formatting String ? [*RESOLVED*]Threaded View
|
Click Here to Expand Forum to Full Width |