vote up 0 vote down star

Hi,

I've a label in an asp.net page that gets its text from a global resource file somthing like this:

<asp:Label  ID="Label1" runat="server" Text="<%$ Resources:MyResource, MyString %>" />

The resource string for MyString contains text with a linebreak like:

line1

line2

When the label is rendered I get the following html

<span id="Label1">line1line2</span>

but instead I want it to be rendered as

<span id="Label1">line1<br/>line2</span>

Is there a standard way making this happen without putting br-Tags in the resource file or manually replacing text in the resource string?

flag

75% accept rate

3 Answers

vote up 1 vote down check

Resources are just plain text, you'll have to post-process them after pulling the data from the resource file to change newlines to <br/>'s.

link|flag
vote up 1 vote down

The standard way is to put <br /> tags in the text.

link|flag
as I said I don't want to put br-Tags in the resource strings – MarioH Sep 24 at 12:31
Then it is not possible. – blahblah Sep 24 at 16:01
vote up 0 vote down

but i want to display the space as i put in the english paragraph.same spaces i want to in converted hindi paragraph from resx file. what should i do??????

plz answer .

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.