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
KellyKanchesKellyKanches 

Error: Digital_Suite_Checklist line 121, column 12: XML document structures must start and end within the same entity Error Error: XML document structures must start and end within the same entity.

Can someone help me with how to close out this page? 
I am very new to VF and APEX and don't have a clue what I am doing wrong. 
Thanks! 

<apex:page>
<apex:page: standardcontroller="School__c" tabstyle="School__c">
    <style >
        p {
        font-size:16px;
        }
        .beenWorkingOut {
        font-size:16px;
        }
        .paraCrunch {
        margin-left:10%;
        margin-right:10%;
        }
        a {
        text-decoration:none;
        }
    </style>  
    
    
    <apex:pageBlock title="MealViewer Initial Call to Customer Checklist">
        
        <apex:pageBlockSection title="Summary" columns="2">
            
            <apex:outputField value="{!school.Phone}"/>
            <apex:outputField value="{!school.Name}"/>
            <apex:pageBlockSectionItem />
            <apex:pageBlockSectionItem />
            <apex:pageBlockSectionItem />
            <apex:outputLink onClick="window.open('/{!school.id}')">(View School)</apex:outputLink>
        </apex:pageBlockSection>        
        
        
    </apex:pageBlock>
    
    <apex:form >
        <span style="float:right">        
            
            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
        </span>
        <br /><br /><br />
        <span style="float:right; font-size:12px; color:grey;">version 1.0 - revised 2015.04.07</span>
        <apex:pageBlock title="Details">
            <apex:pageBlockSection title="Introduction" columns="2">
                <p class="paraCrunch">
                    My name is <b>{!$User.FirstName} {!$User.LastName}</b> and I'm going to be taking care of you as your Onboarding Specialist here at MealViewer! Do you have a few minutes?
                </p>
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <li>Call Summary</li>
                        <ul>
                            <li><a id="one1" href="#" style="color:black;" onclick="setColorById('one1','green');return false;">Ask the Questions</a></li>
                            <li><a id="one2" href="#" style="color:black;" onclick="setColorById('one2','green');return false;">Complete the Form</a></li>
                            <li><a id="one3" href="#" style="color:black;" onclick="setColorById('one3','green');return false;">Thank the Customer</a></li>
                        </ul>
                </ul>
            </p>
        </apex:pageBlockSection>
        <apex:pageBlockSection title="School Details" columns="2">
            <p class="paraCrunch">
                <ul class="beenWorkingOut">
                    <li><a id="two1" href="#" style="color:black;" onclick="setColorById('two1','green');return false;">Review All Account Details</a></li>
                    <li><a id="two2" href="#" style="color:black;" onclick="setColorById('two2','green');return false;">Verify Current Listed Contacts</a></li>
                    
                    
            </ul>
        </p>
        
       
        
        
        <apex:pageBlockSectionItem />
        <apex:inputField value="{!school.How_Many_Total_Wired_Players__c}"/>
        <apex:inputField value="{!school.How_Many_Total_Wireless_Players__c}"/>
        <apex:inputField value="{!school.How_Many_Total_Displays__c}"/>
        <apex:inputField value="{!school.How_Many_Additional_Digital_Suites__c}"/>
        <apex:inputField value="{!school.How_Many_Total_Mounts__c}"/>
        <apex:inputField value="{!school.How_Many_Total_Splitters__c}"/>
        <apex:inputField value="{!school.Length_between_Displays_for_splitters__c}"/>
        <apex:inputField value="{!school.Location_of_Player_in_School__c}"/>
        <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
        <apex:inputField value="{!school.Menu_Planning_Software_Currently_Used__c}"/>
        <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
        <apex:inputField value="{!school.Do_They_Have_Different_Serving_Lines__c}"/>
        <apex:inputField value="{!school.Serving_Lines_per_Player__c}"/>
        <apex:inputField value="{!school.Serving_Line_Name_s__c}"/>
        <apex:inputField value="{!school.Cycle__c}"/>
        <apex:inputField value="{!school.Cycle_Week__c}"/>
        <apex:inputField value="{!school.Customer_Confirmed_Installation_Date__c}"/>
        <apex:inputField value="{!school.Desired_Launch_Date__c}"/>
        <apex:inputField value="{!school.Installation_Date_Time__c}"/>
        <apex:inputField value="{!school.Installation_Area_Type__c}"/>
        <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
        <apex:inputField value="{!school.Display_Size__c}"/>
    </apex:pageBlockSection>    
    
    <apex:pageBlockSection title="Contact Information" columns="1">
        <p class="paraCrunch">
            <ul class="beenWorkingOut">
    <apex:inputField value="{!school.Maintenance_Contact__c}"/>
    <apex:inputField value="{!school.IT_Contact__c}"/>
      
    </ul>
</p>

</apex:pageBlockSection>    
<apex:pageBlockSection title="Wrap-Up" columns="1">
    <p class="paraCrunch">
        Thank you so much for taking the time to meet with me today.  We are so excited to get started and look forward to working with you.  Are there any questions about the program that you have for me at this time?
    </p>
    <p class="paraCrunch">
        Again, my name is <b>{!$User.FirstName}</b>, and if you have any questions, please contact me at <b>803-380-5538</b>. Or, you can email me at <b>{!$User.Email}</b>.
    </p>    
</apex:pageBlockSection>    
</apex:pageBlock>
<span style="float:right">
    <apex:commandButton action="{!save}" value="Save" /> &nbsp;
    <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
</span><br /><br />

<apex:page> 
Best Answer chosen by KellyKanches
Anil kumar GorantalaAnil kumar Gorantala
<apex:page standardcontroller="School__c" tabstyle="School__c">
    <style >
        p {
        font-size:16px;
        }
        .beenWorkingOut {
        font-size:16px;
        }
        .paraCrunch {
        margin-left:10%;
        margin-right:10%;
        }
        a {
        text-decoration:none;
        }
    </style>
    <apex:form>
        <apex:pageBlock title="MealViewer Initial Call to Customer Checklist">
            <apex:pageBlockSection title="Summary" columns="2">
                <apex:outputField value="{!school.Phone}"/>
                <apex:outputField value="{!school.Name}"/>
                <apex:outputLink onClick="window.open('/{!school.id}')">(View School)</apex:outputLink>
            </apex:pageBlockSection>
        </apex:pageBlock>
        
		<span style="float:right">
            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
        </span>
        <br />
        <br />
        <br />
        <span style="float:right; font-size:12px; color:grey;">version 1.0 - revised 2015.04.07</span>
        <apex:pageBlock title="Details">
            <apex:pageBlockSection title="Introduction" columns="2">
                <p class="paraCrunch">
                    My name is 
                    <b>{!$User.FirstName} {!$User.LastName}</b> and I'm going to be taking care of you as your Onboarding Specialist here at MealViewer! Do you have a few minutes?
                </p>
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <li>Call Summary</li>
                        <ul>
                            <li>
                                <a id="one1" href="#" style="color:black;" onclick="setColorById('one1','green');return false;">Ask the Questions</a>
                            </li>
                            <li>
                                <a id="one2" href="#" style="color:black;" onclick="setColorById('one2','green');return false;">Complete the Form</a>
                            </li>
                            <li>
                                <a id="one3" href="#" style="color:black;" onclick="setColorById('one3','green');return false;">Thank the Customer</a>
                            </li>
                        </ul>
                    </ul>
                </p>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="School Details" columns="2">
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <li>
                            <a id="two1" href="#" style="color:black;" onclick="setColorById('two1','green');return false;">Review All Account Details</a>
                        </li>
                        <li>
                            <a id="two2" href="#" style="color:black;" onclick="setColorById('two2','green');return false;">Verify Current Listed Contacts</a>
                        </li>
                    </ul>
                </p>
                <apex:inputField value="{!school.How_Many_Total_Wired_Players__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Wireless_Players__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Displays__c}"/>
                <apex:inputField value="{!school.How_Many_Additional_Digital_Suites__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Mounts__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Splitters__c}"/>
                <apex:inputField value="{!school.Length_between_Displays_for_splitters__c}"/>
                <apex:inputField value="{!school.Location_of_Player_in_School__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Menu_Planning_Software_Currently_Used__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Do_They_Have_Different_Serving_Lines__c}"/>
                <apex:inputField value="{!school.Serving_Lines_per_Player__c}"/>
                <apex:inputField value="{!school.Serving_Line_Name_s__c}"/>
                <apex:inputField value="{!school.Cycle__c}"/>
                <apex:inputField value="{!school.Cycle_Week__c}"/>
                <apex:inputField value="{!school.Customer_Confirmed_Installation_Date__c}"/>
                <apex:inputField value="{!school.Desired_Launch_Date__c}"/>
                <apex:inputField value="{!school.Installation_Date_Time__c}"/>
                <apex:inputField value="{!school.Installation_Area_Type__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Display_Size__c}"/>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="Contact Information" columns="1">
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <apex:inputField value="{!school.Maintenance_Contact__c}"/>
                        <apex:inputField value="{!school.IT_Contact__c}"/>
                    </ul>
                </p>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="Wrap-Up" columns="1">
                <p class="paraCrunch">
        Thank you so much for taking the time to meet with me today.  We are so excited to get started and look forward to working with you.  Are there any questions about the program that you have for me at this time?
				</p>
                <p class="paraCrunch">
					Again, my name is 
                    <b>{!$User.FirstName}</b>, and if you have any questions, please contact me at 
                    <b>803-380-5538</b>. Or, you can email me at 
                    <b>{!$User.Email}</b>.
                </p>
            </apex:pageBlockSection>
        </apex:pageBlock>
        <span style="float:right">
            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
        </span>
        <br />
        <br />
    </apex:form>
    </apex:page>

try this once

All Answers

Anil kumar GorantalaAnil kumar Gorantala
This type of errors occur due to bad formatting of tags. you can use http://codebeautify.org/htmlviewer/ to correct the formatting and observe where you are missing
Anil kumar GorantalaAnil kumar Gorantala
 <apex:pageBlockSection title="School Details" columns="2">
            <p class="paraCrunch">
                <ul class="beenWorkingOut">
                    <li><a id="two1" href="#" style="color:black;" onclick="setColorById('two1','green');return false;">Review All Account Details</a></li>
                    <li><a id="two2" href="#" style="color:black;" onclick="setColorById('two2','green');return false;">Verify Current Listed Contacts</a></li>
                    
                    
            </ul>
        </p>
        
       
        
        
        <apex:pageBlockSectionItem />          <-------------- remove this
KellyKanchesKellyKanches
I used code beautify (AWESOME) and still get this error message 

Error: Digital_Suite_Checklist line 132, column 36: XML document structures must start and end within the same entity
Error: XML document structures must start and end within the same entity. 

new code below 

 <apex:page>
                <apex:page: standardcontroller="School__c" tabstyle="School__c">
                    <style >
        p {
        font-size:16px;
        }
        .beenWorkingOut {
        font-size:16px;
        }
        .paraCrunch {
        margin-left:10%;
        margin-right:10%;
        }
        a {
        text-decoration:none;
        }
    </style>
                    <apex:pageBlock title="MealViewer Initial Call to Customer Checklist">
                        <apex:pageBlockSection title="Summary" columns="2">
                            <apex:outputField value="{!school.Phone}"/>
                            <apex:outputField value="{!school.Name}"/>
                            <apex:pageBlockSectionItem />
                            <apex:pageBlockSectionItem />
                            <apex:pageBlockSectionItem />
                            <apex:outputLink onClick="window.open('/{!school.id}')">(View School)</apex:outputLink>
                        </apex:pageBlockSection>
                    </apex:pageBlock>
                    <apex:form >
                        <span style="float:right">
                            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            
                            
                            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
                        </span>
                        <br />
                        <br />
                        <br />
                        <span style="float:right; font-size:12px; color:grey;">version 1.0 - revised 2015.04.07</span>
                        <apex:pageBlock title="Details">
                            <apex:pageBlockSection title="Introduction" columns="2">
                                <p class="paraCrunch">
                    My name is 
                                    
                                    <b>{!$User.FirstName} {!$User.LastName}</b> and I'm going to be taking care of you as your Onboarding Specialist here at MealViewer! Do you have a few minutes?
                
                                
                                </p>
                                <p class="paraCrunch">
                                    <ul class="beenWorkingOut">
                                        <li>Call Summary</li>
                                        <ul>
                                            <li>
                                                <a id="one1" href="#" style="color:black;" onclick="setColorById('one1','green');return false;">Ask the Questions</a>
                                            </li>
                                            <li>
                                                <a id="one2" href="#" style="color:black;" onclick="setColorById('one2','green');return false;">Complete the Form</a>
                                            </li>
                                            <li>
                                                <a id="one3" href="#" style="color:black;" onclick="setColorById('one3','green');return false;">Thank the Customer</a>
                                            </li>
                                        </ul>
                                    </ul>
                                </p>
                            </apex:pageBlockSection>
                            <apex:pageBlockSection title="School Details" columns="2">
                                <p class="paraCrunch">
                                    <ul class="beenWorkingOut">
                                        <li>
                                            <a id="two1" href="#" style="color:black;" onclick="setColorById('two1','green');return false;">Review All Account Details</a>
                                        </li>
                                        <li>
                                            <a id="two2" href="#" style="color:black;" onclick="setColorById('two2','green');return false;">Verify Current Listed Contacts</a>
                                        </li>
                                    </ul>
                                </p>
                                <apex:inputField value="{!school.How_Many_Total_Wired_Players__c}"/>
                                <apex:inputField value="{!school.How_Many_Total_Wireless_Players__c}"/>
                                <apex:inputField value="{!school.How_Many_Total_Displays__c}"/>
                                <apex:inputField value="{!school.How_Many_Additional_Digital_Suites__c}"/>
                                <apex:inputField value="{!school.How_Many_Total_Mounts__c}"/>
                                <apex:inputField value="{!school.How_Many_Total_Splitters__c}"/>
                                <apex:inputField value="{!school.Length_between_Displays_for_splitters__c}"/>
                                <apex:inputField value="{!school.Location_of_Player_in_School__c}"/>
                                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                                <apex:inputField value="{!school.Menu_Planning_Software_Currently_Used__c}"/>
                                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                                <apex:inputField value="{!school.Do_They_Have_Different_Serving_Lines__c}"/>
                                <apex:inputField value="{!school.Serving_Lines_per_Player__c}"/>
                                <apex:inputField value="{!school.Serving_Line_Name_s__c}"/>
                                <apex:inputField value="{!school.Cycle__c}"/>
                                <apex:inputField value="{!school.Cycle_Week__c}"/>
                                <apex:inputField value="{!school.Customer_Confirmed_Installation_Date__c}"/>
                                <apex:inputField value="{!school.Desired_Launch_Date__c}"/>
                                <apex:inputField value="{!school.Installation_Date_Time__c}"/>
                                <apex:inputField value="{!school.Installation_Area_Type__c}"/>
                                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                                <apex:inputField value="{!school.Display_Size__c}"/>
                            </apex:pageBlockSection>
                            <apex:pageBlockSection title="Contact Information" columns="1">
                                <p class="paraCrunch">
                                    <ul class="beenWorkingOut">
                                        <apex:inputField value="{!school.Maintenance_Contact__c}"/>
                                        <apex:inputField value="{!school.IT_Contact__c}"/>
                                    </ul>
                                </p>
                            </apex:pageBlockSection>
                            <apex:pageBlockSection title="Wrap-Up" columns="1">
                                <p class="paraCrunch">
        Thank you so much for taking the time to meet with me today.  We are so excited to get started and look forward to working with you.  Are there any questions about the program that you have for me at this time?
    </p>
                                <p class="paraCrunch">
        Again, my name is 
                                    
                                    <b>{!$User.FirstName}</b>, and if you have any questions, please contact me at 
                                    
                                    <b>803-380-5538</b>. Or, you can email me at 
                                    
                                    <b>{!$User.Email}</b>.
    
                                
                                </p>
                            </apex:pageBlockSection>
                        </apex:pageBlock>
                        <span style="float:right">
                            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
    
                            
                            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
                        </span>
                        <br />
                        <br />
                        <apex:page>
                   
Anil kumar GorantalaAnil kumar Gorantala
see first two lines you are using apex:page tag inside apex:page tag remove the first one
Anil kumar GorantalaAnil kumar Gorantala
<apex:page standardcontroller="School__c" tabstyle="School__c">
    <style >
        p {
        font-size:16px;
        }
        .beenWorkingOut {
        font-size:16px;
        }
        .paraCrunch {
        margin-left:10%;
        margin-right:10%;
        }
        a {
        text-decoration:none;
        }
    </style>
    <apex:form>
        <apex:pageBlock title="MealViewer Initial Call to Customer Checklist">
            <apex:pageBlockSection title="Summary" columns="2">
                <apex:outputField value="{!school.Phone}"/>
                <apex:outputField value="{!school.Name}"/>
                <apex:outputLink onClick="window.open('/{!school.id}')">(View School)</apex:outputLink>
            </apex:pageBlockSection>
        </apex:pageBlock>
        
		<span style="float:right">
            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
        </span>
        <br />
        <br />
        <br />
        <span style="float:right; font-size:12px; color:grey;">version 1.0 - revised 2015.04.07</span>
        <apex:pageBlock title="Details">
            <apex:pageBlockSection title="Introduction" columns="2">
                <p class="paraCrunch">
                    My name is 
                    <b>{!$User.FirstName} {!$User.LastName}</b> and I'm going to be taking care of you as your Onboarding Specialist here at MealViewer! Do you have a few minutes?
                </p>
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <li>Call Summary</li>
                        <ul>
                            <li>
                                <a id="one1" href="#" style="color:black;" onclick="setColorById('one1','green');return false;">Ask the Questions</a>
                            </li>
                            <li>
                                <a id="one2" href="#" style="color:black;" onclick="setColorById('one2','green');return false;">Complete the Form</a>
                            </li>
                            <li>
                                <a id="one3" href="#" style="color:black;" onclick="setColorById('one3','green');return false;">Thank the Customer</a>
                            </li>
                        </ul>
                    </ul>
                </p>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="School Details" columns="2">
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <li>
                            <a id="two1" href="#" style="color:black;" onclick="setColorById('two1','green');return false;">Review All Account Details</a>
                        </li>
                        <li>
                            <a id="two2" href="#" style="color:black;" onclick="setColorById('two2','green');return false;">Verify Current Listed Contacts</a>
                        </li>
                    </ul>
                </p>
                <apex:inputField value="{!school.How_Many_Total_Wired_Players__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Wireless_Players__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Displays__c}"/>
                <apex:inputField value="{!school.How_Many_Additional_Digital_Suites__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Mounts__c}"/>
                <apex:inputField value="{!school.How_Many_Total_Splitters__c}"/>
                <apex:inputField value="{!school.Length_between_Displays_for_splitters__c}"/>
                <apex:inputField value="{!school.Location_of_Player_in_School__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Menu_Planning_Software_Currently_Used__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Do_They_Have_Different_Serving_Lines__c}"/>
                <apex:inputField value="{!school.Serving_Lines_per_Player__c}"/>
                <apex:inputField value="{!school.Serving_Line_Name_s__c}"/>
                <apex:inputField value="{!school.Cycle__c}"/>
                <apex:inputField value="{!school.Cycle_Week__c}"/>
                <apex:inputField value="{!school.Customer_Confirmed_Installation_Date__c}"/>
                <apex:inputField value="{!school.Desired_Launch_Date__c}"/>
                <apex:inputField value="{!school.Installation_Date_Time__c}"/>
                <apex:inputField value="{!school.Installation_Area_Type__c}"/>
                <apex:inputField value="{!school.Make_Model_Retrofitted_Displays__c}"/>
                <apex:inputField value="{!school.Display_Size__c}"/>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="Contact Information" columns="1">
                <p class="paraCrunch">
                    <ul class="beenWorkingOut">
                        <apex:inputField value="{!school.Maintenance_Contact__c}"/>
                        <apex:inputField value="{!school.IT_Contact__c}"/>
                    </ul>
                </p>
            </apex:pageBlockSection>
            <apex:pageBlockSection title="Wrap-Up" columns="1">
                <p class="paraCrunch">
        Thank you so much for taking the time to meet with me today.  We are so excited to get started and look forward to working with you.  Are there any questions about the program that you have for me at this time?
				</p>
                <p class="paraCrunch">
					Again, my name is 
                    <b>{!$User.FirstName}</b>, and if you have any questions, please contact me at 
                    <b>803-380-5538</b>. Or, you can email me at 
                    <b>{!$User.Email}</b>.
                </p>
            </apex:pageBlockSection>
        </apex:pageBlock>
        <span style="float:right">
            <apex:commandButton action="{!save}" value="Save" /> &nbsp;
            <apex:commandLink onclick="return confirm('Are you sure you want to cancel? All changes will be lost!');" action="{!cancel}" value="cancel"/>
        </span>
        <br />
        <br />
    </apex:form>
    </apex:page>

try this once
This was selected as the best answer
KellyKanchesKellyKanches
I got this error 

Error: <apex:page> is required and must be the outermost tag in the markup at line 1 column 1
KellyKanchesKellyKanches
I changed the first line to this 
<apex:page>: standardcontroller="School__c" tabstyle="School__c"> 

and got this error 
Error: Unknown property 'school' referenced in Digital_Suite_Checklist
KellyKanchesKellyKanches
I think I know the problem. I need to add School__C to each field bc it is a custom object. 
I will try that
KellyKanchesKellyKanches
That didn't work, 

I tried School__r and School__c 
Do you know what I should be using to reference my custom object School__c
KellyKanchesKellyKanches
I sent you an email :) *Kelly Kanches* Salesforce Administrator p: 800.960.8147 m: 803-443-8045 web: prescribewellness.com