function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ramakrishna236ramakrishna236 

rederaspdf

 

hi,

  i have small problem here i am passing string value that value is not converted into string.it display html 

my code

class:

public string shtml{get;set;}
public test(){
shtml='<html>';
shtml+='<table border="1">';
shtml+='<tr>';
shtml+='<td>ANU</td>';
shtml+='<td>ANu</td>';
shtml+='</tr>';
shtml+='</table>';
shtml+='</html>';
//shtml = 'HI Anu';
}
}

page:

<apex:page renderAs="" controller="test">
<apex:form >
<apex:outputtext value="{!shtml}" escape="true"> </apex:outputtext>
</apex:form>

</apex:page>

 


Jia HuJia Hu

<apex:outputtext value="{!shtml}" escape="true">   ---> will show the default html string

 

<apex:outputtext value="{!shtml}" escape="false">   ---> can show the Html effect in the VF page