Creating a simple forum-Please help!
-
Hey all Im trying to create a very simple forum where people can basically just post comments. Ive tried countless tutorials and downloaded many source codes but everything is either: 1: in c# and not VB script 2: In an old VB version and wont convert correctly or... 3: requires a remote connection to a server...this is impossible for me as its a project for university and the network settings dont allow this. So can anybody PLEASE PLEASE PLEASE point me to a good article or source code download or something..? I need it to not be C#...and like i said...it can be very very simple. please help
Dazz
-
Hey all Im trying to create a very simple forum where people can basically just post comments. Ive tried countless tutorials and downloaded many source codes but everything is either: 1: in c# and not VB script 2: In an old VB version and wont convert correctly or... 3: requires a remote connection to a server...this is impossible for me as its a project for university and the network settings dont allow this. So can anybody PLEASE PLEASE PLEASE point me to a good article or source code download or something..? I need it to not be C#...and like i said...it can be very very simple. please help
Dazz
Hi, sorry, I can't help you with your issue directly. But have you tried to search guestbook source code? If you just want users to post comments, a guestbook is nothing else. regards pdluke
-
Hi, sorry, I can't help you with your issue directly. But have you tried to search guestbook source code? If you just want users to post comments, a guestbook is nothing else. regards pdluke
no I havnt tried searching that....thanks..ill give it a try
Dazz
-
Hey all Im trying to create a very simple forum where people can basically just post comments. Ive tried countless tutorials and downloaded many source codes but everything is either: 1: in c# and not VB script 2: In an old VB version and wont convert correctly or... 3: requires a remote connection to a server...this is impossible for me as its a project for university and the network settings dont allow this. So can anybody PLEASE PLEASE PLEASE point me to a good article or source code download or something..? I need it to not be C#...and like i said...it can be very very simple. please help
Dazz
DarynRoberts wrote:
Im trying to create a very simple forum where people can basically just post comments.
If you need a very simple application where user's can post comments, why don't you create one instead of looking for tutorials. 1 - Which language you are familiar to ? 2 - Which database you are familiar to ? If it is VB.NET and SQLServer 1 - You need to use SQLConnection. SQLCommand classes 2 - You need a connection string that connects with DB 3 - For inserting into database, Initialize SQLConnection class, Write query to SQlCommand class instance, Use SQLCommand's ExecuteNonQuery() method 4 - For selection either you can use SQLDatareader or a Dataset/Datatabel
-
DarynRoberts wrote:
Im trying to create a very simple forum where people can basically just post comments.
If you need a very simple application where user's can post comments, why don't you create one instead of looking for tutorials. 1 - Which language you are familiar to ? 2 - Which database you are familiar to ? If it is VB.NET and SQLServer 1 - You need to use SQLConnection. SQLCommand classes 2 - You need a connection string that connects with DB 3 - For inserting into database, Initialize SQLConnection class, Write query to SQlCommand class instance, Use SQLCommand's ExecuteNonQuery() method 4 - For selection either you can use SQLDatareader or a Dataset/Datatabel
Hey Thanks!!....smart-ass
Dazz