I am currently displaying a list of ‘system codes’ which are grouped by a ‘unit code’ on an ASP webpage I want to be able to manually add a ‘system code’.
I have a form that contains two dropdowns (1) that contains unit codes (2) contains business codes - these are populated by the database. I also have a free-text input box, which I want to add a system code.
When I click submit on the form I want it to update my SQL database and webpage with the new ‘system code’.
Can anyone help or does anyone know any examples of how to do this?
My tables are as follows:
System
System ID - System code - System description - BusinessID - CoverID
1 - BG - LARGE - 1 - 4
2 - CH - SMALL - 2 - 4
3 - CO - LARGE - 1 - 4
4 - A0 - SMALL - 1 - 4
5 - BG - SMALL - 1 - 4
6 - DN - SMALL - 3 - 4
7 - EQ - SMALL - 3 - 4
8 - H8 - SMALL - 1 - 4
9 - AH - SMALL - 2 - 4
10 - AI - SMALL - 1 - 4
Unit
Unit ID - Unit code - Unit description
1 - GA - This is the Description
2 - GB - This is the Description
3 - GC - This is the Description
4 - GD - This is the Description
Business
Business ID - Business code - Business description - UnitID - Logo ID
1 - AA - Business AA - 1 - 1
2 - BB - Business BB - 2 - 2
3 - CC - Business CC - 3 - 3
4 - CC - Business CC - 4 - 4
I have a form that contains two dropdowns (1) that contains unit codes (2) contains business codes - these are populated by the database. I also have a free-text input box, which I want to add a system code.
When I click submit on the form I want it to update my SQL database and webpage with the new ‘system code’.
Can anyone help or does anyone know any examples of how to do this?
My tables are as follows:
System
System ID - System code - System description - BusinessID - CoverID
1 - BG - LARGE - 1 - 4
2 - CH - SMALL - 2 - 4
3 - CO - LARGE - 1 - 4
4 - A0 - SMALL - 1 - 4
5 - BG - SMALL - 1 - 4
6 - DN - SMALL - 3 - 4
7 - EQ - SMALL - 3 - 4
8 - H8 - SMALL - 1 - 4
9 - AH - SMALL - 2 - 4
10 - AI - SMALL - 1 - 4
Unit
Unit ID - Unit code - Unit description
1 - GA - This is the Description
2 - GB - This is the Description
3 - GC - This is the Description
4 - GD - This is the Description
Business
Business ID - Business code - Business description - UnitID - Logo ID
1 - AA - Business AA - 1 - 1
2 - BB - Business BB - 2 - 2
3 - CC - Business CC - 3 - 3
4 - CC - Business CC - 4 - 4