ASP/VBScript Join() Returns a string created by joining a number of substrings contained in an array.
ShotDev Focus:
- Using Asp and Join() function.
Example
asp_join.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim arrVar(3) arrVar(0) = "a" arrVar(1) = "b" arrVar(2) = "c" arrVar(3) = "d" Response.write Join(arrVar) %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_join.asp
Screenshot