Whats the diff between readonly and "disabled=true", I've been using the latter...In the terminology of the HTML Specification [1], a "disabled" control disallows user input *and* the field will not be "successful" on a form submit. In other words, there will be no corresponding request parameter. A "readonly" field [2] also disallows user input, but the request parameter for this field will still be returned (sort of a visible version of an <input type="hidden"> field). There are also a few other minor differences that you can see in the spec language.
Craig
[1] http://www.w3.org/TR/html4/interact/forms.html#adef-disabled [2] http://www.w3.org/TR/html4/interact/forms.html#adef-readonly
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]