Author |
Topic |
|
kolucoms6
Average Member
845 Posts |
Posted - 04 January 2008 : 13:16:00
|
I am willing to conduct a Survey Onlien for my website.
I am looking free MDB based ASP code...
Any pointer to that kind of code will definitely help. |
|
Bassman
Junior Member
Netherlands
256 Posts |
|
kolucoms6
Average Member
845 Posts |
Posted - 04 January 2008 : 14:27:53
|
Yes, seen that , but db design and working , is not that good... |
|
|
gary b
Junior Member
USA
267 Posts |
Posted - 04 January 2008 : 21:57:02
|
I believe you could make your own using www.VBSdb.com
This free tool uses VBscript to create ASP pages. Open source -- customize as you want. I have had great success with this. It works with Access or SQL. I have used mainly Access because of convenience and familiarity.
Take a look... If you like the VBSdb website info, I will help you set up a prototype. |
|
|
kolucoms6
Average Member
845 Posts |
Posted - 04 January 2008 : 22:58:51
|
Downloaded it.
Using it, is like learning a new Language...
May be I am wrong...Excuse me for that ... |
|
|
gary b
Junior Member
USA
267 Posts |
Posted - 05 January 2008 : 09:36:35
|
No... no... It *does* take getting used to. It becomes very easy to use and customize. (That is why I offered to help because I am my familiar with this tool.)
Set up a simple Access database (.mdb) having the data fields and design of your choice. Use VBSdb to display the data. Great orientation.
Again... I am willing to help. Send me database design and I will build prototype!
'glauco' has developed an awesome tool. I used this tool to create a searchable on-line database of Snitz MODs. (News on this may be forthcoming soon.)
gary b
|
|
|
mdelcour2000
Junior Member
United States
133 Posts |
Posted - 05 January 2008 : 19:30:29
|
any ideas for a Survey if I am using MSSQL? |
http://lacledeforum.com/
"Never get so busy doing the work of the kingdom that you forget who the King is" |
|
|
gary b
Junior Member
USA
267 Posts |
Posted - 06 January 2008 : 00:47:25
|
Please allow me to ramble... to "think out loud"...
A survey is nothing more than a list of questions that includes a means to collect the answers.
Let me restate that while substituting equivalent functionality: A survey is nothing more than a list of questions form with textboxes to accept User input that and includes a means to collect database to record the answers. A typical survey could then be considered as a special case wherein the textboxes are replaced by radio buttons.
So any "form" that accepts User input and, upon 'post', transfers that input to a database can be construed as a 'survey'. That part can be handled by ASP. IF Request.Method = 'post' Then strBox1 = Request.Form("box1") strSQL = "INSERT INTO tblSurvey field1 = strBox1;" exec(SQL) ...and so on.
Then use something, like VBSdb, to retrieve/display the data. I might note the following -- copied from VBSdb website:
quote: Database independent: VBSdb supports ADO 2.x enabled datasources (Microsoft Access, SQL Server, FoxPro, Oracle, MySql and others)
FWIW... your mileage may vary. |
Edited by - gary b on 06 January 2008 00:48:13 |
|
|
|
Topic |
|