<html>
<body>
<%
sometext="Welcome to this Web"
response.write(Left(sometext,5))
response.write("<br />")
response.write(Right(sometext,5))
%>
</body>
</html>