Connecting Tech Pros Worldwide Forums | Help | Site Map

Delaying on server side

Agoston Bejo
Guest
 
Posts: n/a
#1: Jul 22 '05
Hi,
I would like to achieve the equivalent of META REFRESH but without the HTML
meta refresh and without JavaScript. In other words, on server side I would
like to wait some seconds, then redirect the page. Is there any way to do
this?



Evertjan.
Guest
 
Posts: n/a
#2: Jul 22 '05

re: Delaying on server side


Agoston Bejo wrote on 14 feb 2005 in
microsoft.public.inetserver.asp.general:[color=blue]
> I would like to achieve the equivalent of META REFRESH but without the
> HTML meta refresh and without JavaScript. In other words, on server
> side I would like to wait some seconds, then redirect the page. Is
> there any way to do this?[/color]

No, redirecting is always clientside.

even serverside response.redirect "/"

Cannot be sent after any html is sent, as it
simply sets a redirect header in the message to the client.



--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Bob Barrows [MVP]
Guest
 
Posts: n/a
#3: Jul 22 '05

re: Delaying on server side


Agoston Bejo wrote:[color=blue]
> Hi,
> I would like to achieve the equivalent of META REFRESH but without
> the HTML meta refresh and without JavaScript. In other words, on
> server side I would like to wait some seconds, then redirect the
> page. Is there any way to do this?[/color]

You can use server.transfer to accomplish the client-less redirect, but
making the server wait without causing 100% CPU usage (definitely not
recommended) is not possible. Web servers are designed to serve requests,
not sit there waiting, refusing pending requests as it waits..

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Roland Hall
Guest
 
Posts: n/a
#4: Jul 22 '05

re: Delaying on server side


"Agoston Bejo" <gusz1@freemail.hu> wrote in message
news:%232YdJYqEFHA.624@TK2MSFTNGP09.phx.gbl...
: Hi,
: I would like to achieve the equivalent of META REFRESH but without the
HTML
: meta refresh and without JavaScript. In other words, on server side I
would
: like to wait some seconds, then redirect the page. Is there any way to do
: this?

Why? What is wrong with those two options?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp



Agoston Bejo
Guest
 
Posts: n/a
#5: Jul 22 '05

re: Delaying on server side



"Roland Hall" <nobody@nowhere> wrote in message
news:#VmKgdwEFHA.3936@TK2MSFTNGP10.phx.gbl...[color=blue]
> "Agoston Bejo" <gusz1@freemail.hu> wrote in message
> news:%232YdJYqEFHA.624@TK2MSFTNGP09.phx.gbl...
> : Hi,
> : I would like to achieve the equivalent of META REFRESH but without the
> HTML
> : meta refresh and without JavaScript. In other words, on server side I
> would
> : like to wait some seconds, then redirect the page. Is there any way to[/color]
do[color=blue]
> : this?
>
> Why? What is wrong with those two options?[/color]

The <meta refresh> method is not recommended by the World Wide Web
consortium (see http://www.w3schools.com/html/html_meta.asp).

The JavaScript method requires the client to enable JavaScript (which is
quite a reasonable expectation, but why require it if not neccessary?).

Actually I used <meta refresh> at the end.

Agoston.
[color=blue]
>
> --
> Roland Hall
> /* This information is distributed in the hope that it will be useful, but
> without any warranty; without even the implied warranty of merchantability
> or fitness for a particular purpose. */
> Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
> WSH 5.6 Documentation -[/color]
http://msdn.microsoft.com/downloads/list/webdev.asp[color=blue]
> MSDN Library - http://msdn.microsoft.com/library/default.asp
>
>
>[/color]


Roland Hall
Guest
 
Posts: n/a
#6: Jul 22 '05

re: Delaying on server side


"Agoston Bejo" <gusz1@freemail.hu> wrote in message
news:OKioTmzEFHA.4004@tk2msftngp13.phx.gbl...
:
: "Roland Hall" <nobody@nowhere> wrote in message
: news:#VmKgdwEFHA.3936@TK2MSFTNGP10.phx.gbl...
: > "Agoston Bejo" <gusz1@freemail.hu> wrote in message
: > news:%232YdJYqEFHA.624@TK2MSFTNGP09.phx.gbl...
: > : Hi,
: > : I would like to achieve the equivalent of META REFRESH but without the
: > HTML
: > : meta refresh and without JavaScript. In other words, on server side I
: > would
: > : like to wait some seconds, then redirect the page. Is there any way to
: do
: > : this?
: >
: > Why? What is wrong with those two options?
:
: The <meta refresh> method is not recommended by the World Wide Web
: consortium (see http://www.w3schools.com/html/html_meta.asp).
:
: The JavaScript method requires the client to enable JavaScript (which is
: quite a reasonable expectation, but why require it if not neccessary?).
:
: Actually I used <meta refresh> at the end.

<%@ Language=VBScript %>
<%
Option Explicit
Response.Buffer = True
Response.AddHeader "Refresh","5;URL=http://domain.com/someotherpage.asp"
Response.Write "Redirecting in 5 seconds..."
%>

http://kiddanger.com/lab/delayedredirect.asp

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Evertjan.
Guest
 
Posts: n/a
#7: Jul 22 '05

re: Delaying on server side


Roland Hall wrote on 15 feb 2005 in
microsoft.public.inetserver.asp.general:
[color=blue]
> <%@ Language=VBScript %>
> <%
> Option Explicit
> Response.Buffer = True
> Response.AddHeader "Refresh","5;URL=http://domain.com/someotherpage.asp"
> Response.Write "Redirecting in 5 seconds..."
> %>
>[/color]

Awesome !! Why didn't I know that?

btw: why the Option Explicit?

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Roland Hall
Guest
 
Posts: n/a
#8: Jul 22 '05

re: Delaying on server side


"Evertjan." wrote in message news:Xns95FE85A13841Aeejj99@194.109.133.29...
: Roland Hall wrote on 15 feb 2005 in
: microsoft.public.inetserver.asp.general:
:
: > <%@ Language=VBScript %>
: > <%
: > Option Explicit
: > Response.Buffer = True
: > Response.AddHeader "Refresh","5;URL=http://domain.com/someotherpage.asp"
: > Response.Write "Redirecting in 5 seconds..."
: > %>
: >
:
: Awesome !! Why didn't I know that?

I give up.

: btw: why the Option Explicit?

Sorry, habit.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp



Evertjan.
Guest
 
Posts: n/a
#9: Jul 22 '05

re: Delaying on server side


Roland Hall wrote on 15 feb 2005 in
microsoft.public.inetserver.asp.general:
[color=blue]
> "Evertjan." wrote in message
> news:Xns95FE85A13841Aeejj99@194.109.133.29...
>: Roland Hall wrote on 15 feb 2005 in
>: microsoft.public.inetserver.asp.general:
>:
>: > <%@ Language=VBScript %>
>: > <%
>: > Option Explicit
>: > Response.Buffer = True
>: > Response.AddHeader
>: > "Refresh","5;URL=http://domain.com/someotherpage.asp"
>: > Response.Write "Redirecting in 5 seconds..." %>
>: >
>:
>: Awesome !! Why didn't I know that?
>
> I give up.
>[/color]

I was serious !! I didn't know this as a header.

[and I am seldom serious]

I will contemplate about converting my pages that have metas.

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Roland Hall
Guest
 
Posts: n/a
#10: Jul 22 '05

re: Delaying on server side


"Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message
news:Xns95FED1029AA7Beejj99@194.109.133.29...
: Roland Hall wrote on 15 feb 2005 in
: microsoft.public.inetserver.asp.general:
:
: > "Evertjan." wrote in message
: > news:Xns95FE85A13841Aeejj99@194.109.133.29...
: >: Roland Hall wrote on 15 feb 2005 in
: >: microsoft.public.inetserver.asp.general:
: >:
: >: > <%@ Language=VBScript %>
: >: > <%
: >: > Option Explicit
: >: > Response.Buffer = True
: >: > Response.AddHeader
: >: > "Refresh","5;URL=http://domain.com/someotherpage.asp"
: >: > Response.Write "Redirecting in 5 seconds..." %>
: >: >
: >:
: >: Awesome !! Why didn't I know that?
: >
: > I give up.
: >
:
: I was serious !! I didn't know this as a header.

I know you were and so was I. I have no idea why you didn't know it. I've
never seen it done before either. The only issue here, as I am buffering is
dealing with Response.Flush where AddHeader can actually be anywhere in the
page when buffering but it has to come before a Flush. I call it the toilet
function. You can change your content but once you flush, that's it!

: [and I am seldom serious]

No reason to be serious here. (O:=

:
: I will contemplate about converting my pages that have metas.

After reading the W3C re: META refresh, I never found a difinitive reason
why it should not be used. It said, "some browsers may not be able to use
it". Well, that's clear as mud. Which browsers and is this still relative
or is it just because the client cannot be controlled?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Michael D. Kersey
Guest
 
Posts: n/a
#11: Jul 22 '05

re: Delaying on server side


Roland Hall wrote:
<snipped>
[color=blue]
> : I will contemplate about converting my pages that have metas.
>
> After reading the W3C re: META refresh, I never found a difinitive reason
> why it should not be used. It said, "some browsers may not be able to use
> it". Well, that's clear as mud. Which browsers and is this still relative
> or is it just because the client cannot be controlled?[/color]

Most sites that use META refresh also provide a separate URL on the page
with text such as "If you are not redirected to a new page in 5 seconds,
then click _here_."

I don't hesitate to use META refresh but always also provide the
click-through URL. One reason is that, if the user hits the <esc> key
before the refresh occurs, then the URL won't change. <esc> (and
possibly other keys) kills the refresh; the click-through lets the user
recover.
Adrienne
Guest
 
Posts: n/a
#12: Jul 22 '05

re: Delaying on server side


Gazing into my crystal ball I observed "Michael D. Kersey"
<mdkersey@hal-pc.org> writing in
news:OYNWHv7EFHA.3512@TK2MSFTNGP10.phx.gbl:
[color=blue]
> Roland Hall wrote:
><snipped>
>[color=green]
>> : I will contemplate about converting my pages that have metas.
>>
>> After reading the W3C re: META refresh, I never found a difinitive
>> reason why it should not be used. It said, "some browsers may not be
>> able to use it". Well, that's clear as mud. Which browsers and is
>> this still relative or is it just because the client cannot be
>> controlled?[/color]
>
> Most sites that use META refresh also provide a separate URL on the
> page with text such as "If you are not redirected to a new page in 5
> seconds, then click _here_."
>
> I don't hesitate to use META refresh but always also provide the
> click-through URL. One reason is that, if the user hits the <esc> key
> before the refresh occurs, then the URL won't change. <esc> (and
> possibly other keys) kills the refresh; the click-through lets the user
> recover.
>[/color]

Additionally, one can set one's browser to disallow redirection.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Roland Hall
Guest
 
Posts: n/a
#13: Jul 22 '05

re: Delaying on server side


"Adrienne" wrote in message
news:Xns9605BCD177E9arbpenyahoocom@207.115.63.158. ..
: Gazing into my crystal ball I observed "Michael D. Kersey"
: <mdkersey@hal-pc.org> writing in
: news:OYNWHv7EFHA.3512@TK2MSFTNGP10.phx.gbl:
:
: > Roland Hall wrote:
: ><snipped>
: >
: >> : I will contemplate about converting my pages that have metas.
: >>
: >> After reading the W3C re: META refresh, I never found a difinitive
: >> reason why it should not be used. It said, "some browsers may not be
: >> able to use it". Well, that's clear as mud. Which browsers and is
: >> this still relative or is it just because the client cannot be
: >> controlled?
: >
: > Most sites that use META refresh also provide a separate URL on the
: > page with text such as "If you are not redirected to a new page in 5
: > seconds, then click _here_."
: >
: > I don't hesitate to use META refresh but always also provide the
: > click-through URL. One reason is that, if the user hits the <esc> key
: > before the refresh occurs, then the URL won't change. <esc> (and
: > possibly other keys) kills the refresh; the click-through lets the user
: > recover.
: >
:
: Additionally, one can set one's browser to disallow redirection.

Are you referring to client-side redirection?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Adrienne
Guest
 
Posts: n/a
#14: Jul 22 '05

re: Delaying on server side


Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
writing in news:e6ApxPMGFHA.3368@TK2MSFTNGP10.phx.gbl:
[color=blue]
> "Adrienne" wrote in message
> news:Xns9605BCD177E9arbpenyahoocom@207.115.63.158. ..
>: Gazing into my crystal ball I observed "Michael D. Kersey"
>: <mdkersey@hal-pc.org> writing in
>: news:OYNWHv7EFHA.3512@TK2MSFTNGP10.phx.gbl:
>:
>: > Roland Hall wrote: <snipped>
>: >
>: >> : I will contemplate about converting my pages that have metas.
>: >>
>: >> After reading the W3C re: META refresh, I never found a difinitive
>: >> reason why it should not be used. It said, "some browsers may not
>: >> be able to use it". Well, that's clear as mud. Which browsers and
>: >> is this still relative or is it just because the client cannot be
>: >> controlled?
>: >
>: > Most sites that use META refresh also provide a separate URL on the
>: > page with text such as "If you are not redirected to a new page in 5
>: > seconds, then click _here_."
>: >
>: > I don't hesitate to use META refresh but always also provide the
>: > click-through URL. One reason is that, if the user hits the <esc>
>: > key before the refresh occurs, then the URL won't change. <esc> (and
>: > possibly other keys) kills the refresh; the click-through lets the
>: > user recover.
>: >
>:
>: Additionally, one can set one's browser to disallow redirection.
>
> Are you referring to client-side redirection?
>[/color]

Nope, both client side and server side.

Opera preferences lets you disable automatic redirection. For client side,
it just sits there, for server side, you get Object Moved - Page is
available here (with a link to the new page).

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Evertjan.
Guest
 
Posts: n/a
#15: Jul 22 '05

re: Delaying on server side


Adrienne wrote on 22 feb 2005 in microsoft.public.inetserver.asp.general:
[color=blue][color=green]
>>: Additionally, one can set one's browser to disallow redirection.
>>
>> Are you referring to client-side redirection?
>>[/color]
>
> Nope, both client side and server side.
>[/color]

There is NO serverside redirection!!!

[asp] response.redirect "/"

just sends a header asking the browser to redirect.

[asp Server.transfer should not be called redirecting]

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Iain Norman
Guest
 
Posts: n/a
#16: Jul 22 '05

re: Delaying on server side


On Tue, 15 Feb 2005 18:15:39 -0600, "Michael D. Kersey"
<mdkersey@hal-pc.org> wrote:
[color=blue]
>Roland Hall wrote:
><snipped>
>[color=green]
>> : I will contemplate about converting my pages that have metas.
>>
>> After reading the W3C re: META refresh, I never found a difinitive reason
>> why it should not be used. It said, "some browsers may not be able to use
>> it". Well, that's clear as mud. Which browsers and is this still relative
>> or is it just because the client cannot be controlled?[/color]
>
>Most sites that use META refresh also provide a separate URL on the page
>with text such as "If you are not redirected to a new page in 5 seconds,
>then click _here_."
>
>I don't hesitate to use META refresh but always also provide the
>click-through URL. One reason is that, if the user hits the <esc> key
>before the refresh occurs, then the URL won't change. <esc> (and
>possibly other keys) kills the refresh; the click-through lets the user
>recover.[/color]

Search engines won't thank you for a meta refresh keep in mind though.

--
Iain Norman | http://www.eliteforum.org
Adrienne
Guest
 
Posts: n/a
#17: Jul 22 '05

re: Delaying on server side


Gazing into my crystal ball I observed Iain Norman <anything@me.com>
writing in news:hrim11193ugim5snbd7m6fmf0n5icfbpvl@4ax.com:
[color=blue]
> On Tue, 15 Feb 2005 18:15:39 -0600, "Michael D. Kersey"
><mdkersey@hal-pc.org> wrote:
>[color=green]
>>Roland Hall wrote:
>><snipped>
>>[color=darkred]
>>> : I will contemplate about converting my pages that have metas.
>>>
>>> After reading the W3C re: META refresh, I never found a difinitive
>>> reason why it should not be used. It said, "some browsers may not be
>>> able to use it". Well, that's clear as mud. Which browsers and is
>>> this still relative or is it just because the client cannot be
>>> controlled?[/color]
>>
>>Most sites that use META refresh also provide a separate URL on the
>>page with text such as "If you are not redirected to a new page in 5
>>seconds, then click _here_."
>>
>>I don't hesitate to use META refresh but always also provide the
>>click-through URL. One reason is that, if the user hits the <esc> key
>>before the refresh occurs, then the URL won't change. <esc> (and
>>possibly other keys) kills the refresh; the click-through lets the user
>>recover.[/color]
>
> Search engines won't thank you for a meta refresh keep in mind though.
>[/color]

They don't like a response.redirect either



--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Roland Hall
Guest
 
Posts: n/a
#18: Jul 22 '05

re: Delaying on server side


"Adrienne" wrote in message
news:Xns9605617D6EBD3arbpenyahoocom@207.115.63.158 ...
: Gazing into my crystal ball I observed Iain Norman <anything@me.com>
: writing in news:hrim11193ugim5snbd7m6fmf0n5icfbpvl@4ax.com:
:
: > Search engines won't thank you for a meta refresh keep in mind though.
: >
:
: They don't like a response.redirect either

Is there anything they do like? Better yet, is there anything they do like
today they will like tomorrow? When did it become fashionable to control
the layout/design of the sites of others?

Why is it, "don't do that....because...._______________.... doesn't like it"
rather than, "___________ doesn't know how to work with your site when you
do that. Let's look at a way to make it work so you can do it like that."

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Roland Hall
Guest
 
Posts: n/a
#19: Jul 22 '05

re: Delaying on server side


"Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message
news:Xns960593573D7F4eejj99@194.109.133.29...
: Adrienne wrote on 22 feb 2005 in microsoft.public.inetserver.asp.general:
:
: >>: Additionally, one can set one's browser to disallow redirection.
: >>
: >> Are you referring to client-side redirection?
: >>
: >
: > Nope, both client side and server side.
: >
:
: There is NO serverside redirection!!!
:
: [asp] response.redirect "/"
:
: just sends a header asking the browser to redirect.
:
: [asp Server.transfer should not be called redirecting]

Are you spanking the thread? (O:=

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Adrienne
Guest
 
Posts: n/a
#20: Jul 22 '05

re: Delaying on server side


Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
writing in news:eg0SRmQGFHA.3120@TK2MSFTNGP12.phx.gbl:
[color=blue]
> "Adrienne" wrote in message
> news:Xns9605617D6EBD3arbpenyahoocom@207.115.63.158 ...
>: Gazing into my crystal ball I observed Iain Norman <anything@me.com>
>: writing in news:hrim11193ugim5snbd7m6fmf0n5icfbpvl@4ax.com:
>:
>: > Search engines won't thank you for a meta refresh keep in mind
>: > though.
>: >
>:
>: They don't like a response.redirect either
>
> Is there anything they do like? Better yet, is there anything they do
> like today they will like tomorrow? When did it become fashionable to
> control the layout/design of the sites of others?
>
> Why is it, "don't do that....because...._______________.... doesn't
> like it" rather than, "___________ doesn't know how to work with your
> site when you do that. Let's look at a way to make it work so you can
> do it like that."
>[/color]

They don't like presentational markup either, no I should say they prefer
well formed Strict documents.

Move the presenational stuff to external stylesheets, and javascript
enhancements to external scripts, use tables for tabular data, and they
seem to gobble it up.

I don't do anything else (doorways pages, hidden text, etc) and I have
always had good SERPs. I had one client that was #1 in Google for a year
and a half, until they decided to put back the presenational stuff, and now
they're off the map entirely.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Roland Hall
Guest
 
Posts: n/a
#21: Jul 22 '05

re: Delaying on server side



"Adrienne" <arbpen2003@sbcglobal.net> wrote in message
news:Xns9605699869727arbpenyahoocom@207.115.63.158 ...
: Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
: writing in news:eg0SRmQGFHA.3120@TK2MSFTNGP12.phx.gbl:
:
: > "Adrienne" wrote in message
: > news:Xns9605617D6EBD3arbpenyahoocom@207.115.63.158 ...
: >: Gazing into my crystal ball I observed Iain Norman <anything@me.com>
: >: writing in news:hrim11193ugim5snbd7m6fmf0n5icfbpvl@4ax.com:
: >:
: >: > Search engines won't thank you for a meta refresh keep in mind
: >: > though.
: >: >
: >:
: >: They don't like a response.redirect either
: >
: > Is there anything they do like? Better yet, is there anything they do
: > like today they will like tomorrow? When did it become fashionable to
: > control the layout/design of the sites of others?
: >
: > Why is it, "don't do that....because...._______________.... doesn't
: > like it" rather than, "___________ doesn't know how to work with your
: > site when you do that. Let's look at a way to make it work so you can
: > do it like that."
: >
:
: They don't like presentational markup either, no I should say they prefer
: well formed Strict documents.
:
: Move the presenational stuff to external stylesheets, and javascript
: enhancements to external scripts, use tables for tabular data, and they
: seem to gobble it up.
:
: I don't do anything else (doorways pages, hidden text, etc) and I have
: always had good SERPs. I had one client that was #1 in Google for a year
: and a half, until they decided to put back the presenational stuff, and
now
: they're off the map entirely.

Search engines like tables and browsers hate them, or so 'they' say.
I quit using tables a long time ago and just use CSS with DIV SPAN.
I have no idea what puts you at the top of the list of a search engine.
Never did much research on it and it appears to change often.
Any sources?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Adrienne
Guest
 
Posts: n/a
#22: Jul 22 '05

re: Delaying on server side


Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
writing in news:OD9FaYSGFHA.4072@TK2MSFTNGP10.phx.gbl:
[color=blue]
>
> "Adrienne" <arbpen2003@sbcglobal.net> wrote in message
> news:Xns9605699869727arbpenyahoocom@207.115.63.158 ...
>: Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
>: writing in news:eg0SRmQGFHA.3120@TK2MSFTNGP12.phx.gbl:
>:
>: > "Adrienne" wrote in message
>: > news:Xns9605617D6EBD3arbpenyahoocom@207.115.63.158 ...
>: >: Gazing into my crystal ball I observed Iain Norman
>: >: <anything@me.com> writing in
>: >: news:hrim11193ugim5snbd7m6fmf0n5icfbpvl@4ax.com:
>: >:
>: >: > Search engines won't thank you for a meta refresh keep in mind
>: >: > though.
>: >: >
>: >:
>: >: They don't like a response.redirect either
>: >
>: > Is there anything they do like? Better yet, is there anything they
>: > do like today they will like tomorrow? When did it become
>: > fashionable to control the layout/design of the sites of others?
>: >
>: > Why is it, "don't do that....because...._______________.... doesn't
>: > like it" rather than, "___________ doesn't know how to work with
>: > your site when you do that. Let's look at a way to make it work so
>: > you can do it like that."
>: >
>:
>: They don't like presentational markup either, no I should say they
>: prefer well formed Strict documents.
>:
>: Move the presenational stuff to external stylesheets, and javascript
>: enhancements to external scripts, use tables for tabular data, and
>: they seem to gobble it up.
>:
>: I don't do anything else (doorways pages, hidden text, etc) and I have
>: always had good SERPs. I had one client that was #1 in Google for a
>: year and a half, until they decided to put back the presenational
>: stuff, and now they're off the map entirely.
>
> Search engines like tables and browsers hate them, or so 'they' say.[/color]

I cannot possibly see how a search engine bot could like tables. Bots are
blind and therefore have the same issues with tables that persons using
screen readers have with incorrectly linearized tables.

All markup in the table has to be processed before the page loads, same
thing for SE bots, they have to wait longer for a table than plain markup.
[color=blue]
> I quit using tables a long time ago and just use CSS with DIV SPAN.[/color]

That's really good. I think there are more and more of us who are doing
that. You have a lot more flexibility with CSS than with table designs.
Some of the stuff that Eric Myer is doing, and CSS Zen Garden IMHO just
isn't possible with tables.
[color=blue]
> I have no idea what puts you at the top of the list of a search engine.[/color]

XHTML Strict Doc Type and Well formed semantic markup. I also serve as
application xhtml/+xml if the user agent will accept it.
[color=blue]
> Never did much research on it and it appears to change often.
> Any sources?
>[/color]

You should check alt.internet.search-engines . The growing opinion is that
well formed semantic markup is what gets you good SERPs, as well as good
inbound links.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Closed Thread