I have a multi-line textBox disabled through vb.net :
myTxtA.enabled= false
The html it outputs :
<textarea name="myTxtA" rows="10" id="myTxtA" disabled="disabled" style="width:99%;">
...
</textarea>
That's the source code I get through the browser but the textArea is still editable in the browser. There is no javascript modifying myTxtA, and the only other reference to myTxtA in my codeFile is the following :
If somethingNotHappeningHere Then
myTxtA.ReadOnly = True
End If
I can't see why my textarea is still editable. Can the class of the div containing the textArea modify its behaviour ?
PS: I am not concerned about if the data is sent or not. I'm just looking for the textArea to be uneditable.
Edit: Same problem on IE7 and Firefox 3.5
Edit 2: When I copy all the html source from my browser into a new html file the textarea is properly disabled...