8 lines
150 B
Plaintext
8 lines
150 B
Plaintext
|
<%
|
||
|
Dim strSample
|
||
|
'our sample string
|
||
|
strSample = " This is our sample string"
|
||
|
'reverse the string
|
||
|
Response.Write strReverse(strSample)
|
||
|
%>
|