Hi,
I'm trying to make a message forum using ASP. I have two tables in my database:
Threads (ThreadID, Title, StartedBy, StartedDate, StartedTime)
Posts (PostID, ThreadID, PostedBy, PostedDate, PostedTime, Content)
ThreadID (Threads table) and PostID (Posts table) are the primary keys; both...