I have the following table in SQL with the following fields (id, name, day, week, active). id the primary key of the integer type; name nvchar day week nvchar; active bit; and I have the following data in the table 1; Joseph; Monday 1; 2; Joseph; Wednesday; 1; I want to display this data in a gridview of type;
Tipo colunas: TEXTBOX || Checkbox || Checkbox|| Checkbox||...
Nome colunas: nome || segunda || terça || quarta ||...
Dados: jose || x || || x ||...
When editing, remove the record from that day, and if it does not exist create a new record for that day. I'm doing this in web forms application. I hope you understand what I mean.