|
|
asp trim function - ASP
|
Views : 284
|
|
Tagged in : ASP
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|