|
Select output directory where you like to put generated ASP files and
include files. If you are running Internet Information Server (IIS)
on your machine, you can choose existing virtual directory where you
like to put files or create new virtual directory.

Here is the full list of files to be created ( <TABLE_NAME>
will be replaced with the actual table name, Cars
in this example):
- default.asp:
redirects user to the login page or to the list page
- <TABLE_NAME>_list.asp:
displays list of records and search boxes
- <TABLE_NAME>_edit.asp:
edit record page
- <TABLE_NAME>_add.asp:
add record page
- <TABLE_NAME>_search.asp:
advanced search page
- login.asp
contains username/password
validation code
- imager.asp
displays database images (JPEG,
GIF, BMP)
- uploader.asp
uploads binary images and files
into database
- getfile.asp
extracts and downloads binary
files from database
- print.asp
display printer-friendly version
of the page
- export.asp
exports data to Word, Excel, XML
or CSV
- Include\style.css:
cascading style sheet for the application
- Include\jsfunctions.js:
javascript functions
- Include\ts_picker.js:
javascript-based datepicker
- Include\validate.htm:
javascript-based validation routines
- Include\<TABLE_NAME>_variables.asp:
ASP variables
- Include\<TABLE_NAME>_aspfunctions.asp:
ASP functions
- Include\<TABLE_NAME>_dbconnection.asp:
include file that contains database connection string
- Include\clsField.asp, Include\clsUpload.asp:
file upload routines
- Images\icon_delete.gif:
DELETE icon
- Images\icon_edit.gif:
EDIT icon
- Images\icon_key.gif:
KEY FIELD icon
- Images\icon_required.gif:
REQUIRED FIELD icon
- Images\cal.gif:
calculator image icon
- Images\next.gif:
next month icon
- Images\prev.gif:
previous month icon
- Images\printer.gif:
"printer-friendly version" icon
- Images\word.gif:
Export to Word icon
- Images\excel.gif:
Export to Excel icon
- Images\xml.gif:
Export to XML icon
- Images\csv.gif:
Export to CSV icon
|