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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Discussion Board

Status
Not open for further replies.

mainmast

Programmer
Jun 26, 2003
176
US
Anyone know of a ASP built discussion board tutorial out there?

"Everything is possible, it just depends on how much you want to pay for it."

-James
 
No, I mean a tutorial on creating my own Discussion Board, not a downloadable install kind of thing

"Everything is possible, it just depends on how much you want to pay for it."

-James
 
as for a tutorial, i dont know, as for putting one together it's not overly complicated to get the basics started ...

learn how to use ADO to create DB connections, retrieve and write records

for starters, you'll need a members table (usernames/passwords etc)

a forum table (general forum headings, Support, Tech help, Faqs, etc ) with an ID to reference to the ....

a Threads table (general thread listing for each forum, with an Index reference to it's parent Forum ( conversation Titles ))

a replies table (general conversation listing for all replies, with an Index reference to it's parent thread)

then it's just a matter of making a small handful of pages to start at the top and return recordsets ...

list forums
select : forum select
list threads
select : thread select
list replies
offer form ( contains text area to reply, threadID,ForumID, UserID)

dont forget to work out a login scheme somewhere

pretty much it, then just a matter of using the prior ID's mentioned to give stats on members etc.. if you want private messaging, then just add another table for Messages, seperate from all the others, uses a reference ID to members, sending ID and receipt ID

 
Yes, I know how to create one, I'm just interested in seeing how other's have done it. I've created one a long time ago, and I'm back again creating another one with a bit more advanced features. Thanks anyways.

"Everything is possible, it just depends on how much you want to pay for it."

-James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top