Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating Dynamic Link Request Pages...

Status
Not open for further replies.

cdogstu99

MIS
Jan 17, 2005
68
US
Anyone know how to create something like this:


I'm guessing ASP with Database, but not sure..also maybe if anyone knows of some sort of automated script that will do something like this...thanks!
 
You'd want a pair database tables... one for holding the catagory description and a catagory ID number... the second one for the http link, catagory ID number, and maybe a short description of the page.

You could do it all with one table if you are really careful to make sure links in the same catagory always have exactly the same words... I think it would be easier with 2 tables.
 
ok thats a lot of stuff on that page...

lets break down into something like this:

1. Various forms which will help users to edit/add/email/search the stuff etc on the site

this can be easily implemented with html forms and processing these forms using asp script that talks to the database in the back end...and i would agree with Sheco that creating 2 tables will make your life easy...

for creating forms and learning some stuff please try these below links...


some of these forms require email scripts...try these links for learning more on sending emails using asp...


and you might also need a login script...try this link..

2. coming to the database part...you need tables like...the below is just a simplfied example but will definitely give you some idea and a starting point...

TableName-Users
fields- UserID,UserLogin,UserPass
TableName-Category
fields - CategoryID, CategoryName
TableName- Links
fields- LinkID, CatID, LinkName, LinkUrl,LinkDesc

ok i will stop writing now...your question is not the one which can be answered in a single post...

i would suggest you to starting building the application which will then give me more ideas...

please post back if you need any more info...

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top