You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
386 B
Plaintext

<%
'our text
strText = " myname "
'display the normal text
Response.Write "Hello" & strText & "how are you<br>"
'remove left spaces
Response.Write "Hello" & ltrim(strText) & "how are you<br>"
'remove right spaces
Response.Write "Hello" & rtrim(strText) & "how are you<br>"
'remove left and right spaces
Response.Write "Hello" & trim(strText) & "how are you<br>"
%>