| Generated Web Forms (.aspx) | Quick Description | 
                                
                                    | 1.  List with Add, Edit Redirect & Delete | A web form with a list of items shown in a grid with CRUD functionality.  Adding or updating an item redirects to another page.  
                                        more info 
 
 
                                            Can be used in the administration part of your website Contains a GridView Server Control that has CRUD (Create, Retrieve, Update, Delete) funtionality. Adding a new record redirects to another page Updating and existing record redirects to another page Delete funtionality uses a JQuery UI Pop-up for delete confirmation A link to a read-only Web Form is also provided for all Foreign Key columns (for details on the foreign key) Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 2.  Add New Record | A web form with validated input controls used for adding a new record.
                                        more info 
 
 
                                            Use to Add a New Record Contains JQuery Validation or ASP.Net Validation Contains JQuery UI Date Controls for date fields Contains bound DropDownList Web Control for foreign fields You can get here from the "GridView with Add, Edit Redirect, & Delete" Web Form when clicking the Add New Record link One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 3.  Update Record | a web form with validated input controls used for updating an existing record.
                                        more info 
 
 
                                            Use to Edit/Update an Existing Record Contains JQuery Validation or ASP.Net Validation Contains JQuery UI Date Controls for date fields Contains bound DropDownList Web Control for foreign fields You can get here from the "GridView with Add, Edit Redirect, & Delete" Web Form when clicking the Edit button One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 4.  Record Details (Read Only) | A web form read-only details of a record.
                                        more info 
 
 
                                            Use to show Read-Only detail of a record Shows details of a record (Read-Only) You can get here from the "GridView with Add, Edit Redirect, & Delete" Web Form when clicking the foreign key links One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 5.  List (Read-Only) | A web form with a list of items shown in a grid. No CRUD functionality.
                                        more info 
 
 
                                            Can be used in the public facing part of your website Contains a GridView Server Control. No CRUD funtionality (read-only). A JQuery Tooltip pop-up link is provided for all Foreign Key columns (for details on the foreign key) Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 6.  List with Add, Edit, & Delete (Same Page) | A web form with a list of items shown in a grid with CRUD functionality.  A pop-up shows when adding or updating an item.
                                        more info 
 
 
                                            Can be used in the administration part of your website Contains a GridView Server Control that has CRUD (Create, Retrieve, Update, Delete) funtionality. Add a new record on the same page with JQuery animation Update an existing record on the same page with JQuery animation Delete funtionality uses a JQuery UI Pop-up for delete confirmation A JQuery Tooltip pop-up link is provided for all Foreign Key columns (for details on the foreign key) Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 7.  List with Grouping | A web form with a list of grouped items (e.g. Employees by DepartmentID) using an Accordion.  No CRUD functionality.
                                        more info 
 
 
                                            Can be used to show Grouped data with count Contains a JQuery UI Accordion control with GridView within. No CRUD funtionality (read-only). Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic Shows grouping by the respective group Shows count per respective group E.g. Orders by Shipper, Territories by Region One ASP.NET 4.5 Web Form is generated for each table referencing the current table | 
                                
                                    | 8.  List with Totals | A web form with a list of items with totals in the footer shown in a grid.  No CRUD functionality.
                                        more info 
 
 
                                            Can be used to show Totals (Money and Number of Records) Contains a GridView Server Control. No CRUD funtionality (read-only). Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic Shows total number of records Shows totals on the footer for money fields GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer A JQuery Tooltip pop-up link is provided for all Foreign Key columns (for details on the foreign key) One ASP.NET 4.5 Web Form is generated for tables that have money data fields | 
                                
                                    | 9.  List with More Information | A web form with a list of items with a link that will show More Record Details on the same page.  No CRUD functionality.
                                        more info 
 
 
                                            Can be used in the public facing part of your website Contains a GridView Server Control. No CRUD funtionality (read-only). Each row can be viewed for more information on click of the respective button (animated) GridView uses a Sort Direction Image in the header Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic GridView uses Numeric Paging in the footer A JQuery Tooltip pop-up link is provided for all Foreign Key columns (for details on the foreign key) One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 10.  List with Search | A web form with a list of items shown in a grid with CRUD and Search functionality.  You can filter grid results by entering values in the input controls show on the header.
                                        more info 
 
 
                                            Can be used in the administration part of your website Contains a GridView Server Control that has CRUD (Create, Retrieve, Update, Delete) funtionality. Contains search functionality in the header, per column* Adding a new record redirects to another page Updating and existing record redirects to another page Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic Delete funtionality uses a JQuery UI Pop-up for delete confirmation A link to a read-only Web Form is also provided for all Foreign Key columns (for details on the foreign key) GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 11.  List filtered by a DropDownList | A web form with a list of items filtered by a drop down list control.  No CRUD functionality.
                                        more info 
 
 
                                            Can be used to show Filterable data Contains a GridView Server Control. No CRUD funtionality (read-only). Contains a DropDownList Control that filters the GridView's data on index change Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer A JQuery Tooltip pop-up link is provided for all Foreign Key columns (for details on the foreign key) One ASP.NET 4.5 Web Form is generated for each foreign key in each table | 
                                
                                    | 12.  List with Inline Add and Edit | A web form with a list of items shown in a grid with CRUD functionality.  Add a new record and update an existing item inline with the grid.
                                        more info 
 
 
                                            Can be used in the administration part of your website Contains a GridView Server Control that has CRUD (Create, Retrieve, Update, Delete) funtionality. Add a new record on the same page inline the header of the GridView Update an existing record inline on the same page Uses server validation Uses model binding to retrieve data GridView retrieves data on demand using Skip/Take logic Delete funtionality uses a JQuery UI Pop-up for delete confirmation A link to a read-only Web Form is also provided for all Foreign Key columns (for details on the foreign key) GridView uses a Sort Direction Image in the header GridView uses Numeric Paging in the footer One ASP.NET 4.5 Web Form is generated per table | 
                                
                                    | 13.  Unbound Web Form | a web form with validated input controls which can be used for adding a new record or updating a record.  Not bound/connected to the database so you will need to add your own code to bind it to the database.
                                        more info 
 
 
                                            Use to add your own code in the Code File (Code Behind) Web Forms that are not bound to the database Contains JQuery Validation or ASP.Net Validation Contains JQuery UI Date Controls for date fields Contains unbound DropDownList Web Control for foreign fields One ASP.NET 4.5 Web Form is generated per table |