<!DOCTYPE html>
<html>
<body>

<%
名称 = "W3Schools"
response.write("访问" & 名称 & "现在<br>")
response.write("访问" & trim(名称) & "现在<br>")
response.write("访问" & ltrim(名称) & "现在<br>")
response.write("访问" & rtrim(名称) & "现在")
%>


</body>
</html>