<!DOCTYPE html>
<html>
<body>
<%
txt="This is a beautiful day!"
x=Len(txt)
response.write(Left(txt,x))
%>
</body>
</html>