Problem with setting Input box to Read Only

  •  08-07-2007, 5:03 AM

    Problem with setting Input box to Read Only

    If I enter the following HTML...
     
    <input></input>
     
    ...and then swith to Normal View and check the ReadOnly property of the input box, when I switch back to HTML view, I get the following:
     
    <input readOnlyvalue=" "  type="text" /></input>
     
    ie readOnly doesn't have a value set.
     
     Shouldn't it be as follows??
     
    <input readOnly="" value=" "  type="text" /></input>
View Complete Thread