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
SFDC16SFDC16 

The markup in the document following the root element must be well-formed.

I am getting this error for the below code--->The markup in the document following the root element must be well-formed.

<apex:page controller="AddMultipleAprrovers"  sidebar="False"  showheader="False"/>

    <apex:form>
        
        <apex:commandButton value="Add" action={!addRow}/>
        
        <apex:Repeat value="{!formList} var="form"/>
        
          <c:Case_Task_From ca="{!form}"/>    
        
        </apex:Repeat>

    </apex:form>

</apex:page>
v varaprasadv varaprasad
Hi,

Please check once below code : 
 
<apex:page controller="AddMultipleAprrovers"  sidebar="False"  showheader="False">
    <apex:form>        
        <apex:commandButton value="Add" action={!addRow}/>        
        <apex:Repeat value="{!formList} var="form">        
          <c:Case_Task_From ca="{!form}"/> // here what is ca?
        </apex:Repeat>
    </apex:form>
</apex:page>


Hope this helps you!
If my answer helps resolve your query, please mark it as the 'Best Answer' & upvote it to benefit others.

Thanks
Varaprasad
@For Support: varaprasad4sfdc@gmail.com