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
d3developerd3developer 

Visualforce page displays with only </html> tag

Have to admit it, I am stumped by this one. Visualforce page outputs like this when I include my component:

 

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
</html>

No authorization required message. No error in debug log. Just one closed html tag.

 

Here's the code of the page:

 

 

<apex:page controller="FormDemoController" showheader="false">
        
            Component here: <c:myComponent /> 
       
</apex:page>

 

 I think this is just another episode of broken component-controller communication on Na7 in whatever maintenance release rolling out and derailing previously working code. I wonder how long my code on Na3 is safe.

 

FYI I went in and gave the maximum access on all classes and pages, etc.