ASP/VBScript String() Returns a repeating character string of the length specified.
ShotDev Focus:
- Using Asp and String() function.
Example
asp_string.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write String(30,"T") %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_string.asp
Screenshot