I can't seem to retrieve my information with the Request.form("name") when I disable my text boxes.. readonly works IF i'm using just a text box.. but is there a way to disable my drop down menu AND still retrieve the information?? (I do not want the admin to be able to change the information they have already inserted.. but I do need the information passed again to store in a database.... Any ideas?
Ok, the whole thing I'm working on is a calendar. Calendar is for users/admin.. when the ADMIN log on.. they can add, edit, or delete new events from the calendar... I am adding a "Set As Recurring" function to the edit screen... When the admin goes in to edit an event, I am trying to set it so he can set the event (that he is currently editing) to reoccur, daily, weekly, or monthly.....
When he selects the link to Set an Event as Recurring.. I want all of the information about that event to pull up (so the admin is aware he/she is on the right event) but I DO NOT want the admin to be able to edit it from this screen. All they can do is select how they want the event to reoccur and what date the reoccurrence should stop.
The form looks something like:
Event title: blah blah (readonly)
Event Description: blah blah (readonly)
Event Start Date: Blah blah (readonly)
Event End Date: Blah blah (readonly -- but there is a
js popup calendar so the end date can be added automatically when the user selects the date)
Event All Day: drop down menu (disabled)
Event Required: drop down menu (disabled)
Event Start Time: drop down menu (disabled)
Event End Time: drop down menu (disabled)
Event Calendar: drop down menu (disabled)
Event Image: radio buttons (disabled)
I need to add this information again into the database (for the reoccurrence).. ANy Ideas??
Thanks in advance for your time and assistance! Have a blessed one!