C
Chris
This is one of those things that is really bugging me.
I have a big form (lots and lots of textboxes). I know it isn't the
greatest design, but thats besides the point....
So when I have a Form in IE6 with the readonly property and the
Disabled attribute:
<FORM NAME="aForm" id="aForm" READONLY disabled="true">
The entire form is made readonly when the person loads it. This is
what I want.
When I do this on my ASPX page the form is rendered as:
<FORM NAME="aForm" id="aForm" readonly="" disabled="disabled">
This does NOT work.
What gives? Is there no way to tell .NET to leave my HTML alone?
I have a big form (lots and lots of textboxes). I know it isn't the
greatest design, but thats besides the point....
So when I have a Form in IE6 with the readonly property and the
Disabled attribute:
<FORM NAME="aForm" id="aForm" READONLY disabled="true">
The entire form is made readonly when the person loads it. This is
what I want.
When I do this on my ASPX page the form is rendered as:
<FORM NAME="aForm" id="aForm" readonly="" disabled="disabled">
This does NOT work.
What gives? Is there no way to tell .NET to leave my HTML alone?