<!DOCTYPE html>
<html>
<body>
<%
name = "Bill Gates"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>
</body>
</html>
OUTPUT
BILL GATES
bill gates
<html>
<body>
<%
name = "Bill Gates"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>
</body>
</html>
OUTPUT
BILL GATES
bill gates
0 comments:
Post a Comment