Reverse a string

This is an example of how to reverse a string using the strReverse function.

Code :

<%
Dim strSample
'our sample string
strSample = " This is our sample string"
'reverse the string
Response.Write strReverse(strSample)
%>

 

Sponsors