Kurt
|
| Posted: 03/16/2005, 10:52 AM |
|
Hello,
First, sorry for my english. Is really poor T_T
Well, how can I replace the line breaks of a textarea for a <br>? To show it in a grid in HTML Content, in ASP.
Sorry again, my english sucks 
Thank you!
Kurt
|
|
|
 |
mrachow
Posts: 509
|
| Posted: 03/17/2005, 12:30 AM |
|
<YourForm>.<YourControl>.Value = replace(<YourForm>.<YourControl>.Value, VbLf, "<br>")
Plus, you have to set property Content of that control to HTML.
_________________
Best regards,
Michael |
 |
 |
Kurt
|
| Posted: 03/17/2005, 6:55 AM |
|
Thank you, Michael!
But... where I must write this code? 
Kurt
|
|
|
 |
Kurt
|
| Posted: 03/17/2005, 7:08 AM |
|
Oh, that's ok! It works!
Thank you very much, Michael!
Kurt
PS: I need learn a lot of ASP...
|
|
|
 |
|