7384 city bus network query system is a bus query system developed with asp+access.
Background function description (most functions are newly added)
1. Line list
Display all lines and the line ID, road description, the stations the line passes, and the entrance to rename and delete the line.
2. Site list
Display all sites and the site ID, routes passing through the site, as well as the site rename and delete entrances
3. Add lines
When adding a line, if there is an update to the station that the line passes through, add it if it does not exist, and update the corresponding station ID array at the same time.
Fill in carefully: "-Site 1-Site 2-...-Site N-". That is, sites are separated by -, and the site name cannot contain the separator -.
4. Add a site
Just add the line and fill in the stations the line passes through in detail. There is no need to add additional stations.
5. Delete line
When deleting the line record, update the sites that the line passes through, and delete only the sites that the line passes through.
6. Delete site
When deleting the site record, update the lines that pass through the site, and delete only the lines that pass through the site (this will happen after multiple deletions)
7. Line rename
When updating the name and description of the route table, update the name of the route in all station tables.
8. Site name change
When updating the name of the site table, update the names of the site in all line tables.
9. Site Merger
Delete source site, update target site, update all lines
10. Update route passing stations
Directly update the route through the site, no need to delete and then add. You can also delete the route and then add it.
11. Comprehensive inspection
Check if the array is correct and correct it with one click. Or directly generate the database your website needs from the initial data.
Front desk function description
1. Bus transfer query, supports direct and less than two bus transfer queries, and displays the latest query records.
2. Bus route query supports fuzzy query automatic prompts and displays the latest query records.
3. Bus station query supports fuzzy query automatic prompts and displays stations with similar pronunciation.
4. Search query ajax instant prompt. Keywords are added in red, and the visual effect is very good.
The search prompt supports pinyin query "railway station"="huochezhan",
The search prompt supports Simplified Pin query "train station"="hcz",
The search prompt supports fuzzy query "truck" = "train",
Search supports pinyin fuzzy query "ch"="c"....
5. Latest query records of bus transfer query on the home page
6. The latest query records of bus routes on the home page
7. Check the latest query records of bus stops on the homepage
8. Tips on how many stations the transfer will pass through (the above can be experienced online through the provided website)
9. The entire site implements digital parameter transmission to facilitate search engine inclusion and netizen copying.
10. Simple settings can support running in any directory
11. Use a more beautiful page style, especially the search box is more beautiful
12. The transfer algorithm calculates the number of stations passed and arranges them from low to high according to the number of stations.
13. After submitting the query, enter the digital ID parameter page directly (without jumping).
Use and modify
1. To modify the advertisement, please open the js file starting with ad in the css directory.
2. For settings, please open admin/conn.aspindex.aspsuggest.asp in Notepad and modify it.
3. The directory name can be changed arbitrarily in the background to increase the security performance of the website.
4. For other information, please see the instructions in the compressed package.
Note: If iis cannot be used, please use an integrated environment such as netbox for testing.
7384 city bus network query system update log:
After five years, the special work has been extensively updated (2016.08.01)
1. Corrected several minor JS bugs.
2. Major update of background functions (see below, Major Function Update).
3. Instructions for use are more detailed.