473,405 Members | 2,373 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Same table, different pages

Is it possible to have one table somehow 'called' to appear on different pages?
I want something to appear on all pages, yet only want to (re)edit one item.

--
Dirk

The Consensus:-
The political party for the new millenium
http://www.theconsensus.org

Jul 20 '05 #1
35 2289
in post: <news:2h************@uni-berlin.de>
Dirk Bruere at Neopax <di**@neopax.com> said:
Is it possible to have one table somehow 'called' to appear on different pages?
I want something to appear on all pages, yet only want to (re)edit one item.


http://allmyfaqs.com/faq.pl?Include_one_file_in_another

--
b r u c i e
Jul 20 '05 #2

"brucie" <sh**@bruciesusenetshit.info> wrote in message
news:2h************@uni-berlin.de...
in post: <news:2h************@uni-berlin.de>
Dirk Bruere at Neopax <di**@neopax.com> said:
Is it possible to have one table somehow 'called' to appear on different pages? I want something to appear on all pages, yet only want to (re)edit one

item.
I haven't tried it, but was considering the same thing for a navigation bar.
http://javascript.internet.com/navig...avigation.html
I might try this
Jul 20 '05 #3
John D. wrote:
I haven't tried it, but was considering the same thing for a navigation
bar.
http://javascript.internet.com/navig...avigation.html
I might try this


I wouldn't its very Google unfriendly (and their code example appears to be
a weird cross between HTML 3.2 and 4.01 - I wouldn't trust anything from
them).
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 20 '05 #4
John D. <news:Mk******************@bignews6.bellsouth.net> :
"brucie" <sh**@bruciesusenetshit.info> wrote in message
news:2h************@uni-berlin.de...
Dirk Bruere at Neopax <di**@neopax.com> said:
> Is it possible to have one table somehow 'called' to appear
> on different pages?


http://allmyfaqs.com/faq.pl?Include_one_file_in_another


I haven't tried it, but was considering the same thing for a
navigation bar.
http://javascript.internet.com/navig...lti-page-navig
ation.html I might try this


As the allmyfaqs.com URL states, client support is required for
JavaScript. For primary navigation you should choose a method you
have better control over (e.g. SSI or pre-processing), client
scripting could be useful for a secondary navigation aid such as
a cookie crumb trail.

Perhaps
http://home.earthlink.net/~woogieoog.../cookiecrumbs/

--
Rob - http://rock13.com/
Web Stuff: http://rock13.com/webhelp/
Jul 20 '05 #5
On Sun, 23 May 2004 11:26:43 -0400, John D. <jo*****@excite.com> wrote:

"brucie" <sh**@bruciesusenetshit.info> wrote in message
news:2h************@uni-berlin.de...
in post: <news:2h************@uni-berlin.de>
Dirk Bruere at Neopax <di**@neopax.com> said:
> Is it possible to have one table somehow 'called' to appear on

different

pages?
> I want something to appear on all pages, yet only want to (re)edit one

item.
I haven't tried it, but was considering the same thing for a navigation
bar.
http://javascript.internet.com/navig...avigation.html
I might try this


Javascript isn't wise for navigation, unless there are redundant text
links available.

And using SSI or PHP to include navigation - now I'm not terribly up on
either, but I'm somewhat sure that using these technologies you can only
insert a navigation section which allows all links to be clickable - in
other words, you can't shut off the current page's link, which is
preferrable for usability.

I'd love to be wrong about this, and I'd happily be proven wrong. I
suspect if I am I will be rather shortly! If I could include "smart
navigation" which shuts off the active page's link, I'd get right on that
ASAP myself.
Jul 20 '05 #6

"David Dorward" <do*****@yahoo.com> wrote in message
news:c8*******************@news.demon.co.uk...
John D. wrote:
I haven't tried it, but was considering the same thing for a navigation
bar.
http://javascript.internet.com/navig...avigation.html I might try this


I wouldn't its very Google unfriendly


I was curious about that.
In laymans terms:
Is it because all my pages will be linked to a link
as aposed to being directly linked to eachother?
Could you please elaborate on the "google unfreindly" statement.
share your wisdom with a new HTML guy.

Thanks
John D.
Jul 20 '05 #7
On Sun, 23 May 2004 13:43:18 -0400, John D. <jo*****@excite.com> wrote:
http://javascript.internet.com/navig...avigation.html

"David Dorward" <do*****@yahoo.com> wrote in message
news:c8*******************@news.demon.co.uk...
I wouldn't its very Google unfriendly


I was curious about that.
In laymans terms:
Is it because all my pages will be linked to a link
as aposed to being directly linked to eachother?
Could you please elaborate on the "google unfreindly" statement.
share your wisdom with a new HTML guy.

Basically, Google don't do Javascript. It cannot index your page unless
the links are proper HTML links.
Jul 20 '05 #8
John D. wrote:

http://javascript.internet.com/navig...avigation.html

Could you please elaborate on the "google unfreindly" statement.


The Googlebot (the spider that crawls the web and indexes pages) is
entirely javascript unaware. It will not parse or execute any js. If a
page is only available to users via js links, then the Googlebot will
never find it.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #9
Neal wrote:

And using SSI or PHP to include navigation - now I'm not terribly up on
either, but I'm somewhat sure that using these technologies you can only
insert a navigation section which allows all links to be clickable - in
other words, you can't shut off the current page's link, which is
preferrable for usability.


I suspect your right about SSI includes: it merely inserts a file's
contents at some place in the document. (Not having used much SSI, I
cannot be certain of this.)

But this can be done with PHP, which is a full-fledged programming
language. One kludge: declare a variable $current for each page, e.g.,
$current="home". The nav would have an if (!$current == "home")
construct to put a link to the home page, or else put only the text
"home." No doubt someone has thought of something more graceful than
that -- perhaps by querying the request uri or the file name -- which
you'll find by searching the relevant news group's archives.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #10
On Sun, 23 May 2004 15:48:17 -0400, Brian
<us*****@julietremblay.com.invalid> declared in
comp.infosystems.www.authoring.html,alt.html:
No doubt someone has thought of something more graceful than
that


brucie had one a while ago - don't recall how he did it though.

--
Mark Parnell
http://www.clarkecomputers.com.au
Jul 20 '05 #11
in post: <news:1v******************************@40tude.ne t>
Mark Parnell <we*******@clarkecomputers.com.au> said:
No doubt someone has thought of something more graceful than
that
brucie had one a while ago
it went away after i used the cream
don't recall how he did it though.


thats ok, i don't recall doing it

--
b r u c i e
Jul 20 '05 #12
in post: <news:op**************@news.individual.net>
Neal <ne*****@yahoo.com> said:
If I could include "smart navigation" which shuts off the active
page's link,


i'm not sure thats such a good idea. nav needs to be consistent from
page to page so changing it on every page may be a bit
annoying/confusing, you'd have to be careful with the implementation.

also just because they're on the page doesn't mean they no longer want
the link. e.g. right-clicking with some browsers allows a few different
action to perform with the link, you cant do it with a dead link.
--
b r u c i e
Jul 20 '05 #13
While sitting in a puddle Neal scribbled in the mud:
And using SSI or PHP to include navigation - now I'm not terribly up
on either, but I'm somewhat sure that using these technologies you
can only insert a navigation section which allows all links to be
clickable - in other words, you can't shut off the current page's
link, which is preferrable for usability.


http://wipkip.biz/index.php

--
Duende
I'll never do that again.
Jul 20 '05 #14
On Mon, 23 May 2004, Duende wrote:
http://wipkip.biz/index.php


And the cacheability engine says:

This object will be considered stale, because it doesn't have any
freshness information assigned. It doesn't have a validator present.
It doesn't have a Content-Length header present, so it can't be used
in a HTTP/1.0 persistent connection.

If the resource is genuinely dynamic, then that would be fine. But if
building the page dynamically from materials that have not changed, it
would be opportune to at least set an appropriate last-modified date
on the HTTP response.

Jul 20 '05 #15
Alan J. Flavell wrote:
If the resource is genuinely dynamic, then that would be fine. But if
building the page dynamically from materials that have not changed, it
would be opportune to at least set an appropriate last-modified date
on the HTTP response.


A good start. But, imho, if you're going to dabble in php (or some other
page that interfere's with caching), you ought to go the full 9 yards
and parse the request headers for if-modified-since and if-none-match,
and return 304 as appropriate.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #16
On Mon, 24 May 2004 09:16:10 +1000, brucie <sh**@bruciesusenetshit.info>
wrote:
in post: <news:op**************@news.individual.net>
Neal <ne*****@yahoo.com> said:
If I could include "smart navigation" which shuts off the active
page's link,
i'm not sure thats such a good idea. nav needs to be consistent from
page to page so changing it on every page may be a bit
annoying/confusing, you'd have to be careful with the implementation.


The navigation maintains the same basic appearance. All that changes is
the fact that one item - representing the current location - is
highlighted and unlinked. We're not talking about scrambling the eggs. A
uniform appearance to the menu is maintained.
also just because they're on the page doesn't mean they no longer want
the link. e.g. right-clicking with some browsers allows a few different
action to perform with the link, you cant do it with a dead link.


Clicking on a link allows you to:

- follow the link - no need when you're on the page
- add the target to bookmarks, also easy to do when on the page
- save or print the target, also simple to do when on the page
- copy the link address, which is right in the address bar when on the page

What am I missing? What functionality is lost by disabling the link to the
current page?
Jul 20 '05 #17
in post: <news:op**************@news.individual.net>
Neal <ne*****@yahoo.com> said:
also just because they're on the page doesn't mean they no longer want
the link. e.g. right-clicking with some browsers allows a few different
action to perform with the link, you cant do it with a dead link.
Clicking on a link allows you to:
- follow the link - no need when you're on the page
you don't know that
- add the target to bookmarks, also easy to do when on the page
- save or print the target, also simple to do when on the page
- copy the link address, which is right in the address bar when on the page
it doesn't matter if the same functionality in available by other means.
it may not be how the visitor is used to doing it but now you've forced
them to use a method other than the one they usually use because you've
second guessed how the visitor uses their browser and killed off the
link.
What am I missing? What functionality is lost by disabling the link to the
current page?


a lot more. it depends on the UA.

--
b r u c i e
Jul 20 '05 #18
Neal wrote:
And using SSI or PHP to include navigation - now I'm not terribly up on
either, but I'm somewhat sure that using these technologies you can only
insert a navigation section which allows all links to be clickable - in
other words, you can't shut off the current page's link, which is
preferrable for usability.


You would have difficulty doing that in SSI, but it's not hard in PHP:

http://www.goddamn.co.uk/tobyink/

--
Toby A Inkster BSc (Hons) ARCS
Contact Me - http://www.goddamn.co.uk/tobyink/?page=132

Jul 20 '05 #19
On Mon, 24 May 2004 16:50:47 +1000, brucie <sh**@bruciesusenetshit.info>
wrote:
Clicking on a link allows you to:
- follow the link - no need when you're on the page


you don't know that


Sure I do. Where else will a navigation link bring you?
- add the target to bookmarks, also easy to do when on the page
- save or print the target, also simple to do when on the page
- copy the link address, which is right in the address bar when on the
page


it doesn't matter if the same functionality in available by other means.
it may not be how the visitor is used to doing it but now you've forced
them to use a method other than the one they usually use because you've
second guessed how the visitor uses their browser and killed off the
link.


Well, there's the argument that we should not remove functionality, and
there's the argument that we should account for users who don't know jack
shit about their browser or how to use it. Everything I've mentioned is
more logically possible, amd nore likely accomplished, on a current page
than on a link. I can't imagine that too many users have gotten accustomed
to doing things through a link and can't comprehend doing the same exact
things on the current page. In fact, I can't imagine any.

Maybe it's a problem with my imagination. But I think it's rather a
problem with yours.
What am I missing? What functionality is lost by disabling the link to
the
current page?


a lot more. it depends on the UA.


Enlighten me. What else can a right-click on a link do that cannot be
absolutely replicated on a current page??
Jul 20 '05 #20
Dirk Bruere at Neopax wrote:
Is it possible to have one table somehow 'called' to appear on different
pages?
I want something to appear on all pages, yet only want to (re)edit one
item.


I use PHP for this. The menus at http://tranchant.plus.com/ are
generated with one file per directory, and each "HTML" page calls a menu
function to draw the menus and define which are the active items for
highlighting.

--
Mark.
Jul 20 '05 #21
in post: <news:op**************@news.individual.net>
Neal <ne*****@yahoo.com> said:
Clicking on a link allows you to:
- follow the link - no need when you're on the page
you don't know that
Sure I do.
no you don't.
Where else will a navigation link bring you?
its not all about where a link takes you but what you can do with it.
for example right clicking on the current page link to open it in the
background to keep it for later while you continue to surf the site on
the page already open.
can't imagine that too many users have gotten accustomed to doing
things through a link and can't comprehend doing the same exact
things on the current page. In fact, I can't imagine any.
i don't use the address bar and cant imagine anyone using it to copy the
page address so i'll remove it from all my pages, after all you can get
a copy of the page address using other methods.

or perhaps i shouldn't assume everyone uses a browser the same way i do
and leave it alone.
Maybe it's a problem with my imagination.
yes
But I think it's rather a problem with yours.
my problem is i'm used to using my browser a certain way but now you've
killed off the current page link so i'm forced to use another unfamiliar
method (if one is available) to do whatever i wanted to do with the
link.
Enlighten me. What else can a right-click on a link do that cannot be
absolutely replicated on a current page??


it doesn't matter if you can do it by other means the visitor may not
know how to do it by other means.

--
b r u c i e
Jul 20 '05 #22
On Mon, 24 May 2004 17:36:26 +1000, brucie <sh**@bruciesusenetshit.info>
wrote:
or perhaps i shouldn't assume everyone uses a browser the same way i do
and leave it alone.
I'm not advocating messing with the browser. I'm not including a link to
the current page. That';s quite different.
my problem is i'm used to using my browser a certain way but now you've
killed off the current page link so i'm forced to use another unfamiliar
method (if one is available) to do whatever i wanted to do with the
link.


I've really just not included it. Do you advocate that every page should
have a link to itself? That's what seems to be your position. And I've
never seen that recommended by anyone - rather the opposite is normally
preferred. You ought to write a tutorial.
Enlighten me. What else can a right-click on a link do that cannot be
absolutely replicated on a current page??


it doesn't matter if you can do it by other means the visitor may not
know how to do it by other means.


Again, I cannot go to their home and teach them to use their computer,
their browser, or even the chair in which they sit. We must presuppose the
user has the knowledge to use their browser. Setting bookmarks, printing,
saving a file - all these are rather basic parts of computer literacy.

Do you complain when the waitress brings you a soda without a straw, as
some drinkers cannot drink without one?
Jul 20 '05 #23
in post: <news:op**************@news.individual.net>
Neal <ne*****@yahoo.com> said:
Do you complain when the waitress brings you a soda without a straw, as
some drinkers cannot drink without one?


no but i get really pissed off if it hasn't got a cute little umbrella.
doesn't everyone?

--
b r u c i e
Jul 20 '05 #24
brucie wrote:

its not all about where a link takes you but what you can do with it.
for example right clicking on the current page link to open it in
the background to keep it for later while you continue to surf the
site on the page already open.
We may be able to do additional things with a link in our favorite
browsers, but the primary purpose of a hyperlink has been to provide a
jumping off point to another web resource. I'd have to agree with Neal,
it makes no sense to provide a link in the current resource to itself.
And on a practical note, it might confuse true newcomers to the web.
my problem is i'm used to using my browser a certain way but now
you've killed off the current page link so i'm forced to use another
unfamiliar method (if one is available) to do whatever i wanted to do
with the link.


Your argument rests on the assumption that a link in a document to
itself is natural. I don't accept that assumption.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #25
While sitting in a puddle Mark Tranchant scribbled in the mud:
I use PHP for this. The menus at http://tranchant.plus.com/ are
generated with one file per directory, and each "HTML" page calls a menu
function to draw the menus and define which are the active items for
highlighting.


Would you be willing to share your PHP menu code with us lesser types?

--
Duende
I'll never do that again.
Jul 20 '05 #26
On Sun, 23 May 2004, Brian wrote:
A good start. But, imho, if you're going to dabble in php (or some other
page that interfere's with caching), you ought to go the full 9 yards
and parse the request headers for if-modified-since and if-none-match,
and return 304 as appropriate.


It's a fine idea, but it sounds a lot of work. I'd prefer the
scripting system to handle this on my behalf, when I wanted it - e.g
via some kind of option setting.

Disclaimer: my detailed knowledge of PHP is rather minimal.

Alternatively, as I said before, maybe - when essentially "static"
pages are built from components - it would be better to do the
building behind the scenes, whenever the component(s) are changed (e.g
with a makefile and some kind of offline processor), and leave the
HTTPD to do what it already does extremely well - serving out static
pages in accordance with the rules of HTTP, with ETag and if-modified
support and all.

But in the end it's not up to me to choose - I'm just trying to coax
folks into keeping some semblance of cacheability when it's
appropriate.

cheers
Jul 20 '05 #27
Alan J. Flavell wrote:
On Sun, 23 May 2004, Brian wrote:
A good start. But, imho, if you're going to dabble in php (or some
other page that interfere's with caching), you ought to go the full
9 yards and parse the request headers for if-modified-since and
if-none-match, and return 304 as appropriate.
It's a fine idea, but it sounds a lot of work.


You're right about one thing: it's a lot of work. I spent a couple of
days on it last week, and thought I had it figured out, but I can't seem
to get it to send 304.
I'd prefer the scripting system to handle this on my behalf, when I
wanted it - e.g via some kind of option setting.

Disclaimer: my detailed knowledge of PHP is rather minimal.
I'm pretty new to it, but I don't think there's any option setting to
let it do it on its own, for the same reason that no such setting exists
with ssi: the php script has no way of knowing what the last-modified
date is.
maybe - when essentially "static" pages are built from components -
it would be better to do the building behind the scenes, whenever the
component(s) are changed (e.g with a makefile and some kind of
offline processor)


I think that is probably best, when possible. I've found offline
preprocessors woefully inadequate, though, so I don't know how practical
that advice is for authors.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #28
Brian <us*****@julietremblay.com.invalid> wrote:
maybe - when essentially "static" pages are built from components -
it would be better to do the building behind the scenes, whenever the
component(s) are changed (e.g with a makefile and some kind of
offline processor)


I think that is probably best, when possible. I've found offline
preprocessors woefully inadequate, though, so I don't know how practical
that advice is for authors.


Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.

--
Spartanicus
Jul 20 '05 #29
Spartanicus wrote:
Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.


Of course. But I wonder how many php or asp based sites are querying a
db for their content, and how many are using scripting to generate menus
with conditional components, etc. I've been tempted to use php for
something like that, but the extra work of http scares me off.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #30
Brian <us*****@julietremblay.com.invalid> wrote:
Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.


Of course. But I wonder how many php or asp based sites are querying a
db for their content


*offline* database

--
Spartanicus
Jul 20 '05 #31
Spartanicus wrote:
Brian <us*****@julietremblay.com.invalid> wrote:
I wonder how many php or asp based sites are querying a db for
their content


*offline* database


right. ;-)

I used to use a relational database to generate playlists for a radio
program offline, then upload the new ones. Everything on the site was
static. Nice setup I had going.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #32


Brian wrote:
brucie wrote:

its not all about where a link takes you but what you can do with it.
for example right clicking on the current page link to open it in the
background to keep it for later while you continue to surf the site on
the page already open.

We may be able to do additional things with a link in our favorite
browsers, but the primary purpose of a hyperlink has been to provide a
jumping off point to another web resource. I'd have to agree with Neal,
it makes no sense to provide a link in the current resource to itself.
And on a practical note, it might confuse true newcomers to the web.
my problem is i'm used to using my browser a certain way but now
you've killed off the current page link so i'm forced to use another
unfamiliar method (if one is available) to do whatever i wanted to do
with the link.

Your argument rests on the assumption that a link in a document to
itself is natural. I don't accept that assumption.


Well, jumping back in again, I wanted a simple *universally applicable* method
of having *one* nav table on all pages. It seems it cannot be done simply.
So, all I intend to do is an automated cut and paste from a text editor
(including a URL to the current page). It may or may not be 'natural' but it's
legal in all browsers.

--
Dirk

The Consensus:-
The political party for the new millenium
http://www.theconsensus.org

Jul 20 '05 #33
On Tue, 25 May 2004, Spartanicus wrote:
Brian <us*****@julietremblay.com.invalid> wrote:
maybe - when essentially "static" pages are built from components -
it would be better to do the building behind the scenes, whenever the
component(s) are changed (e.g with a makefile and some kind of
offline processor)


I think that is probably best, when possible. I've found offline
preprocessors woefully inadequate, though, so I don't know how practical
that advice is for authors.


Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.


I think you can take it that the other participants on this thread are
not unaware of that :-}

However, the issue here (AFAICS) is: if the same page is served out
many times (between updates of the actual content, I mean), will the
page be different every time, or not?

If not, then the page would be potentially cacheable: but, because of
the lack of ETag and content-length - and, in extreme cases, even of
last-modified date/time - the use of server-time dynamic page
construction has wrecked the potential cacheability.

If, on the other hand, the page content is changing minute by minute,
*and* users want and need the freshest version (e.g flight delays or
other genuinely time-sensitive pages) then, obviously, I'd have no
argument with the procedure.

disclaimer: I use "XBitHack full", while being aware that it's less
then ideal according to the arguments that I'm presenting here. If I
was starting again today, I might well decide against that - and one
of these days I'll probably break the habit.
Jul 20 '05 #34
"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote:
Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.


I think you can take it that the other participants on this thread are
not unaware of that :-}


What some don't seem to be aware of is that there is such a thing as an
offline (relational) database. They are very good at turning out static
cacheble pages based on templates whilst allowing much more complex
operations than a preprocessor (e.g. automatically generating
breadcrumbs trails).

--
Spartanicus
Jul 20 '05 #35
On Wed, 26 May 2004, Spartanicus wrote:
"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote:
Preprocessors are useful for simple inclusions like a menu, a database
based authoring system is capable of much more than that.


I think you can take it that the other participants on this thread are
not unaware of that :-}


What some don't seem to be aware of is that there is such a thing as an
offline (relational) database. They are very good at turning out static
cacheble pages based on templates whilst allowing much more complex
operations than a preprocessor (e.g. automatically generating
breadcrumbs trails).


Sorry for the late response. You make a good point. If one is using
the database to compose a finite number of designed pages (rather than
to compose unforeseen pages on-the-fly in response to unpredictable
user requests), then composing them offline, and serving them out as
static, would indeed satisfy both sides of this particular argument.
Jul 20 '05 #36

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

Similar topics

3
by: Coder Droid | last post by:
Without going into the details of my code: is it possible to have two different users logged in at the same time? I had one page where I found the username correctly set, and another where it...
14
by: Carl Gilbert | last post by:
Hi I am currently writing a site that utilises tables. I have one page that links to a second page. The only problem is that when I link to the second page, the table loads up with a...
5
by: wardellcastles | last post by:
I need to transform from an xml specification to a document with a "book-style" table of contents; one with page numbers, not html hyperlinks (The output of the XSLT is NOT html). For example,...
0
by: Andrew Thompson | last post by:
I have a problem with a table resizing between (different) uses on separate pages (it is read in to each page from a common source). Since I am not sure whether it's an html or css problem,...
3
by: Viken Karaguesian | last post by:
Hello all, Me again :>) Can I modify certain attributes in a style within a stylesheet? Example: I have a style sheet that looks like this: body { background-color: black; font-family: Arial;...
5
by: Sami | last post by:
Please bear with me, and if you answer this question, please do it step by step. I am new at Access, not at all sophisticated. I am using Office XP. This will need to be read in Access for...
2
by: Russell Smith | last post by:
Postgresql 7.4.5 The following VACUUMs were run within a couple of minutes of each other completing. This table concerned is a table that has not been changed in a long time. (a month) There...
1
by: markroworth | last post by:
Hi there, I want to create a form with two buttons on that navigate to two different pages. The code I have at the moment looks like this: <form action="login.php" method="post"> <table...
5
by: jehugaleahsa | last post by:
Hello: What is the point of using a DataTable in ASP .NET? We are unsure how you can use them without 1) rebuilding them every postback, or 2) taking up precious memory. We are not sure how to...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
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...

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.