|
|
|
|
|
| | |
|
PowerASP active server pages asp.net microsoft .net framework sdk learn asp what is asp tutorial learn asp.net CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: VBProblem with textarea |
From: |
Tim Lasek |
Date: |
2/3/1999 8:44:20 AM |
IP: |
207.51.162.13 |
Yea. You can check each character in your variable for a Chr(13) & Chr(10). Try this to see what I mean.
<%
YourVar = Request.Form("YourTextArea")
For I = 1 To Len(YourVar)
c = Mid(YourVar, I, 1)
Response.Write(c & " = " & Asc(c) & "<br>")
Next
%>
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|