You need to sign in to do that
Don't have an account?

Break Statement
Hi All,
Break is not working.
Apex:
Power=string.valueof(lstproduct2[i].test__c) + ' ' + 'KW' + '<br />' + string.valueof(lstproduct2[i].Rating__c) + ' ' + 'KVA' + '<br />' + string.valueof(lstproduct2[i].Hp__c) + ' ' + 'Hp';
VF:
<apex:outputLabel value="{!Power}" />
Out put
Out put coming like this but i want break line.
300 Kv<br />150 KA<br />2000 Hp
Html:
label>
1000 KW<br></br>500 KVA<br></br>2000 Hp</label>
label>1000 KW<br></br>500 KVA<br></br>2000 Hp</label>
Specify the escape attribute as false, e.g.
As always when you use escape=false, it is up to you to make sure you don't introduce the possibility of cross-site scripting. e.g. if any of thse fields being used to compose the label contain user-entered data, you must be sure it contains no scripting tags.
Please, however, be aware of the security consequences of this pattern. By default, we escape values in outputLabels and similar components to keep malicious users from entering data that will execute code. When you use escape="false" without specially encoding what you pass in, you're basically letting the people who enter your data insert arbitrary HTML, JavaScript, etc. directly into your page. You should only use this option if you're aware of, and trust, any users with insert/update data privileges.
See
http://www.salesforce.com/us/developer/docs/apexcode/Content/pages_security_tips_scontrols.htm
What I'd recommend doing is breaking up Power into the parts that you're writing in Apex (such as the <br /> tags, which don't need to be escaped) and the parts that come from data (the field values), which you can surround with HTMLENCODE (see the above link). Then escape="false" should be safe.
Have you tried the escape attribute in <apex:outputlabel escape = false> ?