<html>
<body>
<%
name = "Bill Gates"
response.write(ucase(name))
response.write("<br />")
response.write(lcase(name))
%>
</body>
</html>