473,466 Members | 1,430 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Access on web page

I want to put out a Excel or Access database spreadsheet on a web
page. Can I do this and will it let me update the spreadsheet or
will it be a static web page? If not then should I put it out there
as a file on the web page and open it up and then update the
spreadsheet? Please advise.
Nov 12 '05 #1
9 1671
You can update a web-based Access database with many different technologies
(ASP is one of them) ... of course, your hosting service will have to
support your data access technology, and have Access installed and
configured properly on their servers. Not all of them do, as it's not the
best architecture for web servers (it's a file-server, not a client-server).
If these are in place, then you write your pages using HTML (or some other
markup language) and use something like ASP (or some othe data access
technology) to serve up your data. You would be responsible for all data
manipulation (i.e. Inserts/updates/deletes) as a web-based solution would
almost certainly NOT be data-bound. Access also has available Access Data
Pages, but I can't comment on those since I've never used them.

I can't really comment on Excel other than to say many of the same issues
would apply (i.e. the host would have to have Excel installed and configured
for "multi-user", if that's possible).

From your question, it appears that you don't fully understand the
differences between a spreadsheet and a relational database. The two are NOT
interchangeable, although they appear to be similar. What are you trying to
do?
--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"Mark" <te****@hotmail.com> wrote in message
news:49**************************@posting.google.c om...
I want to put out a Excel or Access database spreadsheet on a web
page. Can I do this and will it let me update the spreadsheet or
will it be a static web page? If not then should I put it out there
as a file on the web page and open it up and then update the
spreadsheet? Please advise.

Nov 12 '05 #2
this works for a pdf on one of my web sites, the same should work for excel:
<a href="http://www.creativedigitalimages.biz/docs/prereg.pdf"
target="_blank">Spotlight Video Registration</a>

for access data, I would use ASP to display the info as a html table. for
ASP classic, the mdb would have to be on that server. If the mdb is not
located at the ISP, then look into ASP.Net and remoting to consume that
remote data source.

John Bickmore
www.BicycleCam.com
www.Feed-Zone.com

"Scott McDaniel" <sc***@no.spam.thedatabaseplace.net> wrote in message
news:l7********************@comcast.com...
You can update a web-based Access database with many different technologies (ASP is one of them) ... of course, your hosting service will have to
support your data access technology, and have Access installed and
configured properly on their servers. Not all of them do, as it's not the
best architecture for web servers (it's a file-server, not a client-server). If these are in place, then you write your pages using HTML (or some other
markup language) and use something like ASP (or some othe data access
technology) to serve up your data. You would be responsible for all data
manipulation (i.e. Inserts/updates/deletes) as a web-based solution would
almost certainly NOT be data-bound. Access also has available Access Data
Pages, but I can't comment on those since I've never used them.

I can't really comment on Excel other than to say many of the same issues
would apply (i.e. the host would have to have Excel installed and configured for "multi-user", if that's possible).

From your question, it appears that you don't fully understand the
differences between a spreadsheet and a relational database. The two are NOT interchangeable, although they appear to be similar. What are you trying to do?
--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"Mark" <te****@hotmail.com> wrote in message
news:49**************************@posting.google.c om...
I want to put out a Excel or Access database spreadsheet on a web
page. Can I do this and will it let me update the spreadsheet or
will it be a static web page? If not then should I put it out there
as a file on the web page and open it up and then update the
spreadsheet? Please advise.


Nov 12 '05 #3
How well does ASP.net deal with the remote Access/Jet file? I've not yet
used the technology, although it would seem that many of the same issues
involved in trying to remotely access a Jet db via connect string would
apply (i.e. corruption, severe performance issues, etc)

"xzzy" <mr********@comcast.net> wrote in message
news:YSZHb.229427$_M.1009972@attbi_s54...
this works for a pdf on one of my web sites, the same should work for excel: <a href="http://www.creativedigitalimages.biz/docs/prereg.pdf"
target="_blank">Spotlight Video Registration</a>

for access data, I would use ASP to display the info as a html table. for
ASP classic, the mdb would have to be on that server. If the mdb is not
located at the ISP, then look into ASP.Net and remoting to consume that
remote data source.

John Bickmore
www.BicycleCam.com
www.Feed-Zone.com

"Scott McDaniel" <sc***@no.spam.thedatabaseplace.net> wrote in message
news:l7********************@comcast.com...
You can update a web-based Access database with many different

technologies
(ASP is one of them) ... of course, your hosting service will have to
support your data access technology, and have Access installed and
configured properly on their servers. Not all of them do, as it's not the best architecture for web servers (it's a file-server, not a

client-server).
If these are in place, then you write your pages using HTML (or some other markup language) and use something like ASP (or some othe data access
technology) to serve up your data. You would be responsible for all data
manipulation (i.e. Inserts/updates/deletes) as a web-based solution would almost certainly NOT be data-bound. Access also has available Access Data Pages, but I can't comment on those since I've never used them.

I can't really comment on Excel other than to say many of the same issues would apply (i.e. the host would have to have Excel installed and

configured
for "multi-user", if that's possible).

From your question, it appears that you don't fully understand the
differences between a spreadsheet and a relational database. The two are

NOT
interchangeable, although they appear to be similar. What are you trying

to
do?
--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"Mark" <te****@hotmail.com> wrote in message
news:49**************************@posting.google.c om...
I want to put out a Excel or Access database spreadsheet on a web
page. Can I do this and will it let me update the spreadsheet or
will it be a static web page? If not then should I put it out there
as a file on the web page and open it up and then update the
spreadsheet? Please advise.



Nov 12 '05 #4
no, "remoting" is completely, totally different. do a google search for
Ingo Rammer for some online articles, his books are also very good at
explaining remoting.

John Bickmore
www.BicycleCam.com
www.Feed-Zone.com

"Scott McDaniel" <scott@NO___Spam--thedatabaseplace.net> wrote in message
news:X7********************@comcast.com...
How well does ASP.net deal with the remote Access/Jet file? I've not yet
used the technology, although it would seem that many of the same issues
involved in trying to remotely access a Jet db via connect string would
apply (i.e. corruption, severe performance issues, etc)

"xzzy" <mr********@comcast.net> wrote in message
news:YSZHb.229427$_M.1009972@attbi_s54...
this works for a pdf on one of my web sites, the same should work for

excel:
<a href="http://www.creativedigitalimages.biz/docs/prereg.pdf"
target="_blank">Spotlight Video Registration</a>

for access data, I would use ASP to display the info as a html table. for
ASP classic, the mdb would have to be on that server. If the mdb is not
located at the ISP, then look into ASP.Net and remoting to consume that
remote data source.

John Bickmore
www.BicycleCam.com
www.Feed-Zone.com

"Scott McDaniel" <sc***@no.spam.thedatabaseplace.net> wrote in message
news:l7********************@comcast.com...
You can update a web-based Access database with many different

technologies
(ASP is one of them) ... of course, your hosting service will have to
support your data access technology, and have Access installed and
configured properly on their servers. Not all of them do, as it's not the best architecture for web servers (it's a file-server, not a

client-server).
If these are in place, then you write your pages using HTML (or some other markup language) and use something like ASP (or some othe data access
technology) to serve up your data. You would be responsible for all data manipulation (i.e. Inserts/updates/deletes) as a web-based solution would almost certainly NOT be data-bound. Access also has available Access Data Pages, but I can't comment on those since I've never used them.

I can't really comment on Excel other than to say many of the same issues would apply (i.e. the host would have to have Excel installed and

configured
for "multi-user", if that's possible).

From your question, it appears that you don't fully understand the
differences between a spreadsheet and a relational database. The two

are NOT
interchangeable, although they appear to be similar. What are you
trying to
do?
--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"Mark" <te****@hotmail.com> wrote in message
news:49**************************@posting.google.c om...
> I want to put out a Excel or Access database spreadsheet on a web
> page. Can I do this and will it let me update the spreadsheet or
> will it be a static web page? If not then should I put it out there
> as a file on the web page and open it up and then update the
> spreadsheet? Please advise.



Nov 12 '05 #5
Thanks to both for the info ... ASP.net is next on my list of "stuff to
learn"

--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"Chuck Grimsby" <c.*******@worldnet.att.net.invalid> wrote in message
news:q4********************************@4ax.com...

ASP.Net works even better then you probably think. There are actually
fewer problems with corruption due to the disconnected methodologies
that web systems require. On the down side, there are a *lot* of
things you can do with an Access interface that you'll find are
impossible to do with a web interface. That down side will drive you
nuts, by the way. Invest in aspirin. You'll need it!

It takes about 6 months of rather intense work to start doing "useful"
things in ASP.net, but it's well worth the effort. (My first ASP.Net
project was done in 2 months, but 4 months later I was more then a bit
ashamed of it....)

Some useful links:

http://www.4guysfromrolla.com/ Do *NOT* miss the article on working
with the datagrid control on this site. It's a very long article, 11
- 13 chapters if memory serves, but no one has better code samples or
explanations of how it works and how to make it work better. Other
articles on the site are well worth a read as well.

http://gotdotnet.com/ Microsoft's own site, and (IMHO) one of the
best that's out there. GotDotNet's message boards are better then the
newsgroups for information, but they seriously need to let Google in
so the search function can work to (useable) point. Usually, this is
my first stop for help, then when I get frustrated, I go to
4guysfromrolla, and then a Google search.

http://www.asp.net/ Another MS site, but worth the trip and a few
hours of "look and see". There are some "sample" websites that only
need a few hours of configuration and customization to use. Bad name
however: "IBuySpy" <shrug> Also has the best list of other .Net
sites on the web, so worth a bookmark.
On Mon, 29 Dec 2003 13:19:54 -0500, "Scott McDaniel"
<scott@NO___Spam--thedatabaseplace.net> wrote:
How well does ASP.net deal with the remote Access/Jet file? I've not yet
used the technology, although it would seem that many of the same issues
involved in trying to remotely access a Jet db via connect string would
apply (i.e. corruption, severe performance issues, etc)

"xzzy" <mr********@comcast.net> wrote in message
news:YSZHb.229427$_M.1009972@attbi_s54...
this works for a pdf on one of my web sites, the same should work for

excel:
<a href="http://www.creativedigitalimages.biz/docs/prereg.pdf"
target="_blank">Spotlight Video Registration</a>

for access data, I would use ASP to display the info as a html table. for ASP classic, the mdb would have to be on that server. If the mdb is not located at the ISP, then look into ASP.Net and remoting to consume that
remote data source.

John Bickmore
www.BicycleCam.com
www.Feed-Zone.com

"Scott McDaniel" <sc***@no.spam.thedatabaseplace.net> wrote in message
news:l7********************@comcast.com...
> You can update a web-based Access database with many different
technologies
> (ASP is one of them) ... of course, your hosting service will have to
> support your data access technology, and have Access installed and
> configured properly on their servers. Not all of them do, as it's not

the
> best architecture for web servers (it's a file-server, not a
client-server).
> If these are in place, then you write your pages using HTML (or some

other
> markup language) and use something like ASP (or some othe data access
> technology) to serve up your data. You would be responsible for all data > manipulation (i.e. Inserts/updates/deletes) as a web-based solution

would
> almost certainly NOT be data-bound. Access also has available Access

Data
> Pages, but I can't comment on those since I've never used them.
>
> I can't really comment on Excel other than to say many of the same

issues
> would apply (i.e. the host would have to have Excel installed and
configured
> for "multi-user", if that's possible).
>
> From your question, it appears that you don't fully understand the
> differences between a spreadsheet and a relational database. The two are NOT
> interchangeable, although they appear to be similar. What are you trying to
> do?
> --
> Scott McDaniel
> CS Computer Software
> Visual Basic - Access - Sql Server - ASP
> "Mark" <te****@hotmail.com> wrote in message
> news:49**************************@posting.google.c om...
> > I want to put out a Excel or Access database spreadsheet on a web
> > page. Can I do this and will it let me update the spreadsheet or
> > will it be a static web page? If not then should I put it out there > > as a file on the web page and open it up and then update the
> > spreadsheet? Please advise.
>
>

--
System Error. Press F13 To Continue.

Nov 12 '05 #6
Thanks Scott,

I assume One table with rows and columns is a spreadsheet? I am not
using multiple tables with relational database.
And if so I can just save it as a static Access web page which can be
viewed on the web? To update or manipulate this spreadsheet I would
need to use ASP or Cold Fusion?
Nov 12 '05 #7
Check out these articles at my web site:

http://www.amazecreations.com/datafa...m&Article=true
http://www.amazecreations.com/datafa...m&Article=true

--

Danny J. Lesandrini
dl*********@hotmail.com
http://amazecreations.com/datafast
"Mark" <te****@hotmail.com> wrote ...
Thanks Scott,

I assume One table with rows and columns is a spreadsheet? I am not
using multiple tables with relational database.
And if so I can just save it as a static Access web page which can be
viewed on the web? To update or manipulate this spreadsheet I would
need to use ASP or Cold Fusion?

Nov 12 '05 #8
Thanks
Nov 12 '05 #9
"Scott McDaniel" <scott@NO___Spam--thedatabaseplace.net> wrote in message news:<X7********************@comcast.com>...
How well does ASP.net deal with the remote Access/Jet file? I've not yet
used the technology, although it would seem that many of the same issues
involved in trying to remotely access a Jet db via connect string would
apply (i.e. corruption, severe performance issues, etc)


once you install framework 1.1 in your II server, you could generate
an asp.net code from your access database, code gen wizard program is
in www.exmlsoft.com -> download.
Nov 12 '05 #10

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

Similar topics

3
by: Paul | last post by:
Hi all, at present I I've built a website which can be updated by admin and users. My problem, I've combined "log in" and "access levels" to restrict access to certain pages, using the built...
14
by: Sean C. | last post by:
Helpful folks, Most of my previous experience with DB2 was on s390 mainframe systems and the optimizer on this platform always seemed very predictable and consistent. Since moving to a WinNT/UDB...
8
by: John Baker | last post by:
Hi: I am URGENTLY in need of some book or web site OR tool that will help me integrate a relatively simple access application into a web page or pages. This is a time recording system (by...
0
by: ASP.Confused | last post by:
The old message looked a little stale, so I am re-posting it here. Anybody have any ideas of what I could do?!? The previous responses to this question are below. If you want to look at the...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
8
by: jbonifacejr | last post by:
This is my first day here, so please be patient. I do not know how to search very well so the search I tried to get the answer showed me topics from the year 2000 and they really don't cover what I...
9
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web...
6
by: =?Utf-8?B?SmF5IFBvbmR5?= | last post by:
I am trying to access a Public property on a Master Page from a Base Page. On the content pages I have the MasterType Directive set up as follows: <%@ MasterType virtualpath="~/Master.master" %>...
7
ADezii
by: ADezii | last post by:
There are essentially three techniques for publishing Access Data on the Web. The first technique is static, and does not allow for the dynamic addition or modification to the data, There is no...
7
by: Andy B | last post by:
I have a class I am creating for data access. I need to access controls from inside the class that are on a particular page. How do I do this? or is creating an instance of the page class and using...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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...
0
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
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 ...

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.