PDA

View Full Version : Elements on a newline in RSS feed


mogreen
05-02-2007, 06:22 PM
Greetings

I have an RSS feed that I am building. I have done the following which is working fine.

<description>
<title>Property Type:</title> <type>Toyota</type>
<title>Make:</title> <model>Camry</model>
</description>

However, I want the make and model to be on their own lines. Like this:
Type: Toyota
Make: Camry

But it displays like this

Type: Toyota Make: Camry

How do I get these elements on their own line when it displays in the RSS feed? I am using ASP.NET to dynamically build the content. I tried environment.newline & vbcrlf. Nothing works.

Any help would be appreciated. Thanks!

mogreen
05-02-2007, 09:50 PM
If anyone is ever wondering about this, I ended up getting what I wanted by doing this

<content type=""html"">&lt;BR></content>