article,only,includes,complete,source,code,da
Quick Search for:  in language:    
article,only,includes,complete,source,code,da
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
ASP/ VbScript Stats

 Code: 144,429 lines
 Jobs: 168 postings

 
Sponsored by:

 

You are in:

 
Login


 

 


Latest Code Ticker for ASP/ VbScript.
Click here to see a screenshot of this code!Ping in ASP
By Michele_Garneri on 10/28

(Screen Shot)

Embed Real Player Object
By Ziae Mousavi m. on 10/27


Set Country --> Combobox
By Hohl David on 10/27


Client Side Sorting of records
By Ravi Rajan on 10/26


Recordset paging with images
By Ravi Rajan on 10/26


Click here to see a screenshot of this code!Online photo catalogue VBScript 2.1
By Ivan Loire on 10/26

(Screen Shot)

GPS 1.4 WYSIWYG
By Guo Xu on 10/25


Click here to see a screenshot of this code!A Network Monitor tool from ActivXperts Software Inc.
By Freddy Hofstadt on 10/25

(Screen Shot)

Socket samples based on Winsock, TCP/IP and client/server communication
By Ronny Bright on 10/25


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

A Complete Database Accessing Web Site!

Print
Email
 

Submitted on: 5/21/2000 9:33:45 PM
By: Bob Lee 
Level: Intermediate
User Rating: By 21 Users
Compatibility:ASP (Active Server Pages), VbScript (browser/client side)

Users have accessed this article 82051 times.
 
 
     This article not only includes the complete source code for a database driven web site that the author created, but includes a detailed description on how it works!

This article has accompanying files

 
 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.

Background

     I set up the admissions site at my college as what I like to think of as a web application as opposed to a bunch of web pages. It is an ASP application that pulls all of its information- menu titles and links, sub menu titles and links, and page content- from a database. The information retrieved from the database is determined by parameters passed through the query string. All of the menu links on the page link back to this main page with a query string. For example, when you click on a main menu link on the nav. bar, the page reloads with the main menu item's corresponding content and all of the sub menu links listed under the main menu link. If you are interested in how the tables are set up or the links are generated, please email me.

There are administration pages that allow non-computer savvy people to add and remove menu items and content to and from the database, thus modifying the web site. These people were not satisfied with the menu items simply being displayed in alphabetical order. They wanted to come up with their own order.

How it works

I started out by adding an additional numerical field to the menu tables in the database called zorder. A text box corresponding to this field was added to the admin pages and the main page was modified so that when it loaded the menu links, it sorted them by their zorder field first and then their title field, whereas before they were sorted only by the title field. If the user left the zorder field blank, I could have done one of two things: give that item the next available zorder number making it the last in the list; or give all items with blank zorder values the same maximum zorder value thus making them all be displayed alphabetically at the end.

I would have liked to just leave it at this, but I foresaw two problems: these same non-computer savvy people having problems with the idea of using a zorder field on the admin pages, and I would get tired of manually updating all of the zorder values every time I wanted to insert a menu link.

First of all, I labeled the zorder field on the entry and edit forms Menu Position and I used a drop down box of numbers to prevent users from entering erroneous values. The drop down box contained the numbers from 1 to the maximum zorder number and defaulted to the last possible number (1 plus the maximum zorder numer) when they were adding a new item and to the existing zorder number when they were modifying an item.

If the user enters a zorder number that is already in use, you will have to update the following zorder numbers accordingly. Given that selectedzorder refers to the zorder number (menu position) that the user selected for the current record then the following SQL query will perform the required update on the following menu records:

 
Update main_menu set zorder=zorder+1where zorder >= selectedzorder;

To retrieve the maximum zorder value for use in your drop down box you could use this query:

 
Select Max(zorder) from main_menu;

The same rules apply to the sub menu table with obvious modifications.


Installation

To install the web application, just un-zip or un-Rar the attatched file into a directory on your ASP-enabled server. I just have mine in the root of my PWS.

If you set it up like I did you would access the demo home page like this: http://localhost/default.asp
and the admin page like this: http://localhost/admin/default.asp

The database is stored in the admin directory. Password protect the admin directory to protect the admin pages and the database. From there it's all pretty self explanatory.

New features allow you to make that menu hierarchy as deep as you like, and the order of menus is now changed with little arrow buttons. I also re-wrote the interface on the front of the admin page and added a site statistics page. Plus, you can cut and paste entire menu trees! This makes it so easy to reorganize your site.

I'll apologize in advance for the lack of commenting and some of the obscure code in places. I usually don't go to a lot of trouble on comments on something this small and straight-forward not to mention it's the product of quite a few late nights. If you find any blatently bad coding, please let me know.

I worked pretty hard on this; if you decide to use part of this code or the entire application please give credit where credit is due. I am a very poor college student who likes computer toys and fine beers (a lot), so if you decide to use this for commercial purposes (i.e. your business's intranet or Internet site) you have to pay me something out of common courtesy and your profits (heh, heh, j/k).

In any case, I'd love to see how you guys apply this. E-mail me with links and descriptions! If you think this calls for another article, let me know and I'll throw something together and submit it.

Thanks for all of you interest in my first article!!

Note: you must have ADO 2.0 or greater installed, since the OLE-DB driver is used in connect.inc. You can download ADO 2.0 for free, or you can just alter connect.inc so it uses a DSNless connection or a System DSN.

winzip iconDownload article

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzipto decompress it.

Virus note:All files are scanned once-a-day by Planet Source Code for viruses,but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:
1)Re-scan downloaded files using your personal virus checker before using it.
2)NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this article(in the Intermediate category)?
(The article with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
7/4/2000 6:03:00 PM:howard
interesting article, but still do not understand. can you help me? howard@russialink.couk.com
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/25/2000 4:46:16 AM:VTech
Hello, Do you want to work for us, we have a similar application to develop ! Thanks
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/5/2000 5:07:22 PM:Michael Shortill
Hello! I was wondering what ADO stands for and exactly HOW to install it.. ;) thankyou for any help Michael =)
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/23/2000 6:28:58 PM:Yuntan@mail.com
what do I need to change to run this applet with Access2000? Microsoft JET Database Engine error '80004005' Unrecognized database format 'C:\Inetpub\wwwroot\exADODB\admin\webdb. mdb'. /exADODB/connect.inc, line 3 the databse engine? is there a new one for use with 2000?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
1/30/2001 7:46:35 PM:Andy
Just what I needed...Working Examples Rock for learning!! Thanks
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
2/20/2001 8:07:59 AM:Stephen Griffin
Hi , very good as a start , I am an MCSE but need to try and get into ASP And HTML and Web development in whole. I need to write to this DB ,how do i create a page to do that? thanks stephen griffin mailto:stephen.griffin@irelan d.com
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/4/2001 6:05:47 PM:Apinzon
Excelente código te permite crear toda una intranet en minutos... Gracias!!!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/20/2001 5:04:20 PM:Lewis Moten
Cool! I'm gonna set this up on my friends website for them.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/27/2001 7:20:08 AM:bambang
it was a great site i ever see keep goin' with all computer's knowledge thanks.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/6/2001 3:57:27 AM:Robert
as a rookie with this stuff, i am wondering how to install ADO. the microsoft site does not give me enough info. can you help me out? thx Robert
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/17/2001 8:08:45 AM:Kevin Therriault
Thank you for your most informative Code and Website. I found it well written and easy to comprehend for a beginning ASP Coder.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
4/29/2002 6:04:29 AM:Arvind
Do you have any source that like Registation page, contacu us page, post add your resume type. IF yes kindly send to me. Plz.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/5/2002 3:41:52 PM:Brad
what do I need to change to run this applet with Access2000? Microsoft JET Database Engine error '80004005' Unrecognized database format 'C:\Inetpub\wwwroot\exADODB\admin\webdb. mdb'. /exADODB/connect.inc, line 3 the databse engine? is there a new one for use with 2000?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/25/2002 1:50:13 PM:Vinh
It is an excel code as I voted. Could you please write a ASP read and update record from an existing database? Also a confirm message for Reset button. Thank you so much. An ASP novice from Texas.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/29/2002 11:15:10 AM:Peter Tran
I've received same error msg. what do I need to change to run this applet with Access2000? Microsoft JET Database Engine error '80004005' Unrecognized database format 'C:\Inetpub\wwwroot\exADODB\admin\webdb. mdb'. /exADODB/connect.inc, line 3 the databse engine? is there a new one for use with 2000?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/24/2002 11:45:09 PM:
Hi Bob, the concept of the code is great, but I've a problem. Having unzipped the code to my ASP server it won't read at all - I get a "page cannot be displayed" error. Could you advise please, but as I'm new to ASP could you be very basic, please? Thank you!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/15/2002 9:58:50 AM:Thnder
This link to ado updates download and run em http://www.microsoft.com/data/download.h tm
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this article has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular article, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | ASP/ VbScript Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.