Strip Function:

The Strip function removes all white space from a string.

Syntax:
string = Strip(string)
Example Usage:
<%  =  Strip( "where" & vbCrLf & vbTab & _
		 "T F S WF EWF WEG$$T" & _
		 vbCrLf & "FE EG$#" )  %>
ASP Source Code:
<%
Private Function Strip(byVal string)
	Strip = Trim( Replace( Replace( Replace( _
		 Replace( Replace( string, vbCrLf, _
		 "" ), vbTab , "" ), " ", "" ), _
		 chr(10), "" ), chr(13), "" ) )
End Function
%>