473,789 Members | 2,544 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using Access 2000 across the Internet

My local Crinkles group(U3A), of which I am one, want me to develop a noddy
database and web
site for their members. Some are computer literate, others not so. I thought
an Access 2000 .mdb on a server from the local council with a web page in
Active Server Pages(ASP) and using ADO would do the trick, then one of them
could update it at home on the web to keep track of members and somebody
else could do the same for current programmes etc. The Chair Person could
then use all the data in the DB to keep track of things, such as sending
letters out to members, by accessing the DB directly over the Internet from
the council server as an application rather than a web page. Nothing
arduous.

The local council are about to start a project to make local communities
available on the web and are providing software, cyberspace and training in
web editing but the training will be low-grade stuff.

I have developed the odd Access Application in VBA but I have never used VB
or VBScript, which seem to be the tools for ASP.

My question, before I start, is: Is this a sensible route to take and my
other question is: Can ASP be programmed in VBA, with which I am familiar.

Also, is this taking a sledgehammer to crack a nut. For example, could I do
something similar using P2P between two or more users across the internet.
This is something I have no experience of so if this is a runner, could
someone start me off by pointing me in the right direction. I expect this
would work with a backend on the council server and a front-end on each
users machine.

Thanks.
Jun 19 '06 #1
7 1983
sashi
1,754 Recognized Expert Top Contributor
Hi there,

why not.. the answer is always yes.. i would say .asp and .mdb would be a good start thou.. ok let me tell you.. there are a little diff when it comes to VBA, VB, VBScript..

VB you need to declare every variable and specify their respective data types.. i.e.

Dim strName as string
Dim nCount as interger

meaning the variable strName will hold string or character based value.. the varibale nCount on the other hand will hold integer or numerical value..

ok.. lets see VBScript.. here.. once again you have to declare every variable without their respective data types..

i.e.

Dim strName
Dim nCount

get it my fren?? :) well there are millions of website out there providing sample application and some basic tutorial.. one of which is..

http://www.w3schools.com/asp/default.asp

well.. give it a try my fren.. you might be suprised with your creation at the end of the day.. you never try you'll never know.. u know what?? i started my programming carrier with COBOL.. eem say.. i think i was back in 1994.. 2day i know more programming languages among my group of frens.. good luck to you..

do provide me the link to your web portal.. maybe i can try to help u if at all my advice is ever needed.. good luck buddy..

need help?? u pls msg me anytime.. :)
Jun 19 '06 #2
"Visitor No 3" <Th************ ****@Yahoo.co.u k> wrote in message
news:12******** *****@corp.supe rnews.com...
I have developed the odd Access Application in VBA but I have never used VB or VBScript, which seem to be the tools for ASP.

My question, before I start, is: Is this a sensible route to take and my
other question is: Can ASP be programmed in VBA, with which I am familiar.


VBA has absolutely nothing to do with ASP. ASP is a "platform" that runs on
Microsoft's Internet Information Server (IIS). It interprets VBScript,
JavaScript, JScript, and serveral others although the popular choice is
VBScript. It runs only on the server and has nothing to do with the User's
browser.

The MDB is kept on the Web Server "outside" of the Web Path, and the folder
it is kept in, and the MDB file, must have read/write permission granted to
the Web Server's local IUSR account. Here is an example:

c:\wwwroot\visi torNo3Site
|
--website
|
--database

1. The Web Path (root of the website) is set to the folder "website".
2. The FTP Path (root of the FTP service) is set to "visitorNo3Site ". This
lets you upload files to any folder
3. The IUSR account is given read/write to the folder "database"
4. Users going to the site come "in" at the folder "website" and cannot get
to the other fiolders, so they cannot "steal" or mess with the MDB file
located in folder "database"
5. The ASP engine running on the webserver itself, using the IUSR account,
is able to get to the "database" folder and read the contents to build the
web pages from the data and send them to the user's browsers

You do *not*..... "access the MDB over the web".
You maintain a local copy of it just like you maintain a local copy of the
website's files. In the same way that you would make changes to the local
web site files then upload them to the server to update the site,...you do
it the same way with the MDB file,...the MDB file is treated and worked with
exactly the same way as any other site file like *.html, *.asp, whatever.

It is possible to design an "Admin" web site that runs along side the
"public" one that can be used to make changes to the MDB file directly where
it is at,...but often this is more trouble than it is worth (unless you are
a highly skill professional at this) and will not easily work in all
situations.

None of your questions are really "Access" questions. They are ASP
questions,..you need to ask in one of the ASP groups like:

microsoft.publi c.ineserver.asp .db

You are dealing with ASP Classic,...this is *not* ASP.Net,...don' t go to the
ASP.Net groups with this,...the two are no where near the same thing.

--
Phillip Windell [MCP, MVP, CCNA]
www.wandtv.com
-----------------------------------------------------
Understanding the ISA 2004 Access Rule Processing
http://www.isaserver.org/articles/IS...cessRules.html

Troubleshooting Client Authentication on Access Rules in ISA Server 2004
http://download.microsoft.com/downlo...7/ts_rules.doc

Microsoft Internet Security & Acceleration Server: Guidance
http://www.microsoft.com/isaserver/t...dance/2004.asp
http://www.microsoft.com/isaserver/t...dance/2000.asp

Microsoft Internet Security & Acceleration Server: Partners
http://www.microsoft.com/isaserver/partners/default.asp

Deployment Guidelines for ISA Server 2004 Enterprise Edition
http://www.microsoft.com/technet/pro...isaserver.mspx
-----------------------------------------------------

Jun 19 '06 #3
Phillip Windell wrote:
"Visitor No 3" <Th************ ****@Yahoo.co.u k> wrote in message
news:12******** *****@corp.supe rnews.com...
I have developed the odd Access Application in VBA but I have never used


VB
or VBScript, which seem to be the tools for ASP.

My question, before I start, is: Is this a sensible route to take and my
other question is: Can ASP be programmed in VBA, with which I am familiar.

VBA has absolutely nothing to do with ASP. ASP is a "platform" that runs on
Microsoft's Internet Information Server (IIS). It interprets VBScript,
JavaScript, JScript, and serveral others although the popular choice is
VBScript. It runs only on the server and has nothing to do with the User's
browser.

The MDB is kept on the Web Server "outside" of the Web Path, and the folder
it is kept in, and the MDB file, must have read/write permission granted to
the Web Server's local IUSR account. Here is an example:

c:\wwwroot\visi torNo3Site
|
--website
|
--database

1. The Web Path (root of the website) is set to the folder "website".
2. The FTP Path (root of the FTP service) is set to "visitorNo3Site ". This
lets you upload files to any folder
3. The IUSR account is given read/write to the folder "database"
4. Users going to the site come "in" at the folder "website" and cannot get
to the other fiolders, so they cannot "steal" or mess with the MDB file
located in folder "database"
5. The ASP engine running on the webserver itself, using the IUSR account,
is able to get to the "database" folder and read the contents to build the
web pages from the data and send them to the user's browsers

You do *not*..... "access the MDB over the web".
You maintain a local copy of it just like you maintain a local copy of the
website's files. In the same way that you would make changes to the local
web site files then upload them to the server to update the site,...you do
it the same way with the MDB file,...the MDB file is treated and worked with
exactly the same way as any other site file like *.html, *.asp, whatever.

It is possible to design an "Admin" web site that runs along side the
"public" one that can be used to make changes to the MDB file directly where
it is at,...but often this is more trouble than it is worth (unless you are
a highly skill professional at this) and will not easily work in all
situations.

None of your questions are really "Access" questions. They are ASP
questions,..you need to ask in one of the ASP groups like:

microsoft.publi c.ineserver.asp .db

You are dealing with ASP Classic,...this is *not* ASP.Net,...don' t go to the
ASP.Net groups with this,...the two are no where near the same thing.

Take a look at my web site for info on how to utilize Access/Jet
databases in a web environment:

http://webpages.charter.net/bobalsto...20Internet.htm

http://webpages.charter.net/bobalsto...onSoftware.htm

Bob
Jun 19 '06 #4
don't listen to anyone that lets you use a MDB file in an web
environment.

if you used Access Data Projects; you wouldn't need to rewrite your
database

learn ADP and use DAP if you must.

MDB is a joke though; the most ridiculous db engine EVER.

-Aaron
Bob Alston wrote:
Phillip Windell wrote:
"Visitor No 3" <Th************ ****@Yahoo.co.u k> wrote in message
news:12******** *****@corp.supe rnews.com...
I have developed the odd Access Application in VBA but I have never used


VB
or VBScript, which seem to be the tools for ASP.

My question, before I start, is: Is this a sensible route to take and my
other question is: Can ASP be programmed in VBA, with which I am familiar.

VBA has absolutely nothing to do with ASP. ASP is a "platform" that runs on
Microsoft's Internet Information Server (IIS). It interprets VBScript,
JavaScript, JScript, and serveral others although the popular choice is
VBScript. It runs only on the server and has nothing to do with the User's
browser.

The MDB is kept on the Web Server "outside" of the Web Path, and the folder
it is kept in, and the MDB file, must have read/write permission granted to
the Web Server's local IUSR account. Here is an example:

c:\wwwroot\visi torNo3Site
|
--website
|
--database

1. The Web Path (root of the website) is set to the folder "website".
2. The FTP Path (root of the FTP service) is set to "visitorNo3Site ". This
lets you upload files to any folder
3. The IUSR account is given read/write to the folder "database"
4. Users going to the site come "in" at the folder "website" and cannot get
to the other fiolders, so they cannot "steal" or mess with the MDB file
located in folder "database"
5. The ASP engine running on the webserver itself, using the IUSR account,
is able to get to the "database" folder and read the contents to build the
web pages from the data and send them to the user's browsers

You do *not*..... "access the MDB over the web".
You maintain a local copy of it just like you maintain a local copy of the
website's files. In the same way that you would make changes to the local
web site files then upload them to the server to update the site,...you do
it the same way with the MDB file,...the MDB file is treated and worked with
exactly the same way as any other site file like *.html, *.asp, whatever.

It is possible to design an "Admin" web site that runs along side the
"public" one that can be used to make changes to the MDB file directly where
it is at,...but often this is more trouble than it is worth (unless you are
a highly skill professional at this) and will not easily work in all
situations.

None of your questions are really "Access" questions. They are ASP
questions,..you need to ask in one of the ASP groups like:

microsoft.publi c.ineserver.asp .db

You are dealing with ASP Classic,...this is *not* ASP.Net,...don' t go to the
ASP.Net groups with this,...the two are no where near the same thing.

Take a look at my web site for info on how to utilize Access/Jet
databases in a web environment:

http://webpages.charter.net/bobalsto...20Internet.htm

http://webpages.charter.net/bobalsto...onSoftware.htm

Bob


Jun 19 '06 #5

"Bob Alston" <bo********@yah oo.com> wrote in message
news:_p******** *******@fe07.lg a...

<< Take a look at my web site for info on how to utilize Access/Jet
databases in a web environment:
http://webpages.charter.net/bobalsto...20Internet.htm
http://webpages.charte r.net/bobalston/Documents/Access-WebConversionSo ftware.htm>>
Thanks Bob,

That's just exactly the steer I was looking for.
Jun 19 '06 #6
aa*********@gma il.com wrote:
MDB is a joke though; the most ridiculous db engine EVER.

The internet must be a lot funnier than I thought, cuz there are thousands
(unsubstantiate d, just like your assertion) of db solutions using Access as a
DB. If the tool does the job....
Mike
Jun 20 '06 #7
rjc
"Visitor No 3" <Th************ ****@Yahoo.co.u k> wrote in message
news:12******** *****@corp.supe rnews.com...
My local Crinkles group(U3A), of which I am one, want me to develop a noddy database and web
site for their members. Some are computer literate, others not so. I thought an Access 2000 .mdb on a server from the local council with a web page in
Active Server Pages(ASP) and using ADO would do the trick, then one of them could update it at home on the web to keep track of members and somebody
else could do the same for current programmes etc. The Chair Person could
then use all the data in the DB to keep track of things, such as sending
letters out to members, by accessing the DB directly over the Internet from the council server as an application rather than a web page. Nothing
arduous.

The local council are about to start a project to make local communities
available on the web and are providing software, cyberspace and training in web editing but the training will be low-grade stuff.

I have developed the odd Access Application in VBA but I have never used VB or VBScript, which seem to be the tools for ASP.

My question, before I start, is: Is this a sensible route to take and my
other question is: Can ASP be programmed in VBA, with which I am familiar.

Also, is this taking a sledgehammer to crack a nut. For example, could I do something similar using P2P between two or more users across the internet.
This is something I have no experience of so if this is a runner, could
someone start me off by pointing me in the right direction. I expect this
would work with a backend on the council server and a front-end on each
users machine.

Thanks.

Check out http://squeekasp.com/gr/gr.asp?navbar=grnavbar

It has an ASP implementation named GenericDB and GenericReport along with a
couple of others. I used both of these ASP implementation for my boat club's
web site to make our Access DB accessible to the membership and the board of
directors. The documentation with GenericDB was sufficient to get me going
in no time and it was free!

Regards,
Jun 22 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
7829
by: sinna | last post by:
Hi! I'm new in JavaScript, and tried out some examples. If found an XML example at MSDN MSXML 4.0 DOM which is: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/htm/xml_mth_hn_2uck.asp var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.4.0"); xmlDoc.async = false; xmlDoc.resolveExternals = false;
2
7873
by: bbxrider | last post by:
is there no other way to use access(.mdb) across the internet?? (than vpn or worse yet terminal services) i'm trying to write to a mdb on my organization win2k server from my webhost redhat webserver with perl. then i have an 'inside' application that will connect to the same db with a vb program across the lan, this part is no problem vpn is theoretically possible but not realistic in my situation is it much simpler if the sql server...
13
6116
by: Andrew | last post by:
I use conditional compiler constants, set through the VBA IDE in Tools, <projectname> Properties, that I refer to throughout my code to control which code is used during development, and which during production. Usually, this only wraps code used to control quitting the whole app versus just shutting a form, but it can also control many other things. However, as part of the build before delivering an update, I have to remember to...
4
2272
by: lukeargent | last post by:
Hi All, I have come across some rather weird error that I can only assume is something to do with my ADP file connecting to SQL Server 2000. I'm using Access XP as my front end. In simple terms: I have a database which is in design for a new Development Request system. The main 2 tables are linked one to many, by in this instance say DWR_ID.
56
5975
by: Raphi | last post by:
Hi, I've been using an Access application I wrote for an office with the front-end stored on all computers and the back-end on one of them serving as an Access file server. Now we're moving to a 2nd office 15 minutes down the road. Only one office will be open at a time, so theoretically it'd be possible to copy the back-end manually every night from one office to another, but frankly, that's pretty annoying.
0
1013
by: dhnriverside | last post by:
Hi guys Wondering if you can help me with a setup issue. All my development is web based, using IIS5.1 on a Windows 2000 Server running Active Directory. Everything was working fine until I upgraded to Broadband. In order to get the internet across all my machines, I have to set the Primary DNS in network properties to the modem/router.
4
3232
by: Supa Hoopsa | last post by:
I am in the process of rewriting an MS Access application (access front end with SQL 2k database) in VB.NET and one of the things I would like to do is link in to the compiled Access ADE so that I can use the reports that have already been created. I have somewhere in the region of 200 reports already created in MS Access and I really don't want to have to create new ones. I have successfully linked to the Access ADP, but would really like to...
133
6950
by: Alan Silver | last post by:
Hello, Just wondered what range of browsers, versions and OSs people are using to test pages. Also, since I don't have access to a Mac, will I have problems not being able to test on any Mac browsers, or is there some other way of checking? TIA --
15
2729
by: ingejg | last post by:
I am starting to study internet synchronization, and my head is still spinning since internet is not my forte, however my boss is breathing down my neck at the moment. Our company has only one server with fixed IP address provided by our ISP, while the other sites (which I wish in the future hold the replicas databases) have only standard internet connections with Dynamic IP (which means that they change IP addresses, as given by the ISP...
0
9511
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10404
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10195
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10136
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7525
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6765
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5415
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5548
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4090
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.