I'm using ASP.NET with asp:Label to give my input controls labels.
When my page is in read only mode I disable all my input controls and associated labels.
When I set Enabled="false" on the label it renders as disabled='disabled' which is not valid XHTML strict (a requirement for my project)
Is there a way to disable ASP.NET labels that is XHTML compliant or is this just not a valid thing to do?