Another problem with the ASP site
Okay, we're getting ahead with that ASP site, but still some problems -
The user fills out a form telling about their cat. The application then takes that text and puts it in the web page.
Problem - When the user hits the "enter" key to start a new paragraph, it doesn't register that. We end up with one long and ugly paragraph.
Have a look at this page to see what I mean:
http://www.thecatsite.net/one_cat.asp?cat1=3&cat=157
How can I make it see the paragraph breaks?
The site's URL is -
Thanks is advance everyone!
Mark Hensler posted this at 22:38 — 8th January 2001.
He has: 4,048 posts
Joined: Aug 2000
simple,
the newlines are there, they're just not yet.
this will make it HTML compatable, and keep it tiddy:
User_Input = Replace(User_Input, vbCrLf, vbCrLf & "" & vbCrLf)
Mark Hensler
If there is no answer on Google, then there is no question.
anat posted this at 09:22 — 9th January 2001.
They have: 304 posts
Joined: Dec 1999
Thanks!
I just passed it on to my ASP programmer. I haven't a clue as to what it means myself ...
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.