asp trim function - ASP Views : 284
Tagged in : ASP
0 0
Send mail
Trim() in asp:

Sometimes whitespaces may cause an issue while storing the given input values. To aviod those issues trim whitespaces using Trim() in asp.
Trim(string)


Example:
<%
Dim email, subject, comments, first_name, last_name
name = Trim(Request.Form("Name"))
Response.write(name)
%>

By Ramya, On - 2010-01-30



    Login to add Comments .