Posts: 5,094
Threads: 1,252
Joined: Sep 2012
Reputation:
0
I figure there are two ways: programming in DreamWeaver/ASP, or just serving up info from Access' built-in data access pages.
I'm guessing the data access pages might get us to an initial site faster, but ASP will be much more customizable.
Whatcha think?
Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
does this need to be done the lazy way or the right way?
the right way would be to get the data into MySQL or MS SQL and then pick your proper web programming language.
Posts: 10,635
Threads: 1,155
Joined: May 2025
Reputation:
0
Isn't there an M$ solution like .net or a shared "something" that actually can use Access?
JoeM
Posts: 5,094
Threads: 1,252
Joined: Sep 2012
Reputation:
0
[quote mattkime]does this need to be done the lazy way or the right way?
the right way would be to get the data into MySQL or MS SQL and then pick your proper web programming language.
I'd thought about MS SQL. But it's just not that much data.
MySQL would mean changing how people are already storing their info, and I'm not sure if I want to inflict that much change at this point. :-)
Posts: 241
Threads: 52
Joined: Apr 2007
Reputation:
0
ASP.NET can connect to Access database. Just make sure you put the MDB file in a folder that's not accessible by public. You do not want them to download the whole db.
Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
>>I'd thought about MS SQL. But it's just not that much data.
Its not really about the amount of data. Its more about the reliability of the web connection to the data.
Yes, you can serve MS Access data to the web but its not a very trustworthy solution.
Posts: 5,094
Threads: 1,252
Joined: Sep 2012
Reputation:
0
[quote mattkime]>>I'd thought about MS SQL. But it's just not that much data.
Its not really about the amount of data. Its more about the reliability of the web connection to the data.
Yes, you can serve MS Access data to the web but its not a very trustworthy solution.
Is the nontrustworthiness dependent on the number of users? This isn't for more than a handful of users, and rarely more than one at a time.
Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
>>Is the nontrustworthiness dependent on the number of users? This isn't for more than a handful of users, and rarely more than one at a time.
It sounds like you need a "get it done" solution. Some ISPs offer hosting of MS Access files for use with asp/php in addition to the use of MySQL/MS SQL. Given the choice, I'll always take a real database for web programming over access. however, I'm not sure how the options compare in your situation.