Greetings! I have a SQL field char(7) which holds the days of the week a 'something' should run. Each position of the field corresponds to a day of the week. For example if this something should only run on Monday's, then the field contains '1000000' (1 meaning run, 0 meaning not run). In ASPRunner.Net I have a checkbox for each day of the week and I wrote my SQL query to split out each position and populate the checkboxes accordingly. To this point everything is smooth. However, when I need to insert or update a record, how do put the checkbox values back into a 7 char string? Do I need a custom command button and hide the normal save button (is this even possible)? What would the code look like to concatenate the checkbox values? Any insight you can give is appreciated greatly.