I'm not sure if this was resolved, but I read the thread and I have a quick bit to add. Both the disabled and the readonly were mentioned, and these are both supported in all the browsers except N4. The difference is that a disabled form field will not be submitted with the form, and readonly field will be. A disabled field in IE looks grayed out as well, whereas a readonly field looks normal.
-- mailto:[EMAIL PROTECTED] Monday, March 10, 2003, 6:46:56 PM, you wrote: F> Right, but the idea I was trying to achieve was to keep the "look" the same (with the <input> field) so it matches the rest of the form. >> From: "FlashGuy" <[EMAIL PROTECTED]> >> >How can I stop people of editing the <input line where I'm dumping the date? I >> >don't want them to be able to change it. >> > >> ><input type="text" name="theTime" value="<cfoutput> #DateFormat(todayDate, "dddd, >> >mmmm dd, yyyy")#</cfoutput>" size="30"> >> >> I'd display it as plain text (not in a form field), and do a hidden form field to >> send the value through the form. >> >> <cfoutput> #DateFormat(todayDate, "dddd, mmmm dd, yyyy")#</cfoutput> >> <input type="hidden" name="theTime" value="<cfoutput> #DateFormat(todayDate, "dddd, >> mmmm dd, yyyy")#</cfoutput>"> >> >> >> -------------------------------- >> Scott Brady >> http://www.scottbrady.net/ >> >> >> F> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

