ASP Return a number of characters from a string
Return a number of characters from a string
<html>
<body>
<%
sometext="How are you?"
response.write(Mid(sometext, 2, 2))
%>
</body>
</html>
<html>
<body>
<%
sometext="How are you?"
response.write(Mid(sometext, 2, 2))
%>
</body>
</html>