473,387 Members | 1,876 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,387 software developers and data experts.

abcb <> abcab

So what's this? a is a ASP page. Clicking on a link there goes to the b ASP page. Clicking a link on that goes to the c ASP page. The idea here is to keep the visited attribute throughout the process. So if I go a->b-.c>->b using links dynamically generated the visited attribute holds up on the b page. Even later a->b. But if I go a->b->c->a->b the visted attribute does NOT hold up on the b page. Is there something I can do with session so that if the session is made in the c page then I can make sure the visited link in the b page holds the visited atribute? In other words abcb = abcab. Thanks.

--
George Hester
__________________________________
Jul 19 '05 #1
4 1474
George, I have absolutely no idea what you're talking about. Are you
speaking of the VLINK attribute of the body tag? What does it have to do
with ASP?

--
http://www.aspfaq.com/
(Reverse address to reply.)

"George Hester" <he********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
So what's this? a is a ASP page. Clicking on a link there goes to the b ASP
page. Clicking a link on that goes to the c ASP page. The idea here is to
keep the visited attribute throughout the process. So if I go a->b-.c>->b
using links dynamically generated the visited attribute holds up on the b
page. Even later a->b. But if I go a->b->c->a->b the visted attribute does
NOT hold up on the b page. Is there something I can do with session so that
if the session is made in the c page then I can make sure the visited link
in the b page holds the visited atribute? In other words abcb = abcab.
Thanks.

--
George Hester
__________________________________
Jul 19 '05 #2
It's probably in a *.asp page.

Which reminds me, I have an ASP site about fused glass. Where can my client
get the best prices on Bullseye glass? I need to do a site on auto mechanics
pretty soon too. My truck hasn't been running well lately.

Bob Lehmann

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
George, I have absolutely no idea what you're talking about. Are you
speaking of the VLINK attribute of the body tag? What does it have to do
with ASP?

--
http://www.aspfaq.com/
(Reverse address to reply.)

"George Hester" <he********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
So what's this? a is a ASP page. Clicking on a link there goes to the b ASP page. Clicking a link on that goes to the c ASP page. The idea here is to keep the visited attribute throughout the process. So if I go a->b-.c>->b
using links dynamically generated the visited attribute holds up on the b
page. Even later a->b. But if I go a->b->c->a->b the visted attribute does NOT hold up on the b page. Is there something I can do with session so that if the session is made in the c page then I can make sure the visited link
in the b page holds the visited atribute? In other words abcb = abcab.
Thanks.

--
George Hester
__________________________________

Jul 19 '05 #3
George,
Your code needs to be flexible, so that the code in c checks for
current values before initializing your session variables. I beleive
that session variables won't error out if you check them for
existence.

As In:
If ISNULL(Session("visitedB")) Then
Session("visitedB")=False
End If

There are a variety of other ways to get this done as well.
If you are just talking about vlink='#color' tags not working, it
could because your site or your machine is caching the page. I use the
full cache blocking code in most ASP pages myself:

<%@ Language=VBScript %>
<%
Option explicit
Response.Buffer=true
Response.CacheControl = "Private"
Response.Expires=-1
%>

Place it at the start of the main ASP document for full effect. To
help guard against caching. It helps, but it won't handle all cases.

"Bob Lehmann" <no****@dontbotherme.zzz> wrote in message news:<ei**************@TK2MSFTNGP12.phx.gbl>...
It's probably in a *.asp page.

Which reminds me, I have an ASP site about fused glass. Where can my client
get the best prices on Bullseye glass? I need to do a site on auto mechanics
pretty soon too. My truck hasn't been running well lately.

Bob Lehmann

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
George, I have absolutely no idea what you're talking about. Are you
speaking of the VLINK attribute of the body tag? What does it have to do
with ASP?

--
http://www.aspfaq.com/
(Reverse address to reply.)

"George Hester" <he********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
So what's this? a is a ASP page. Clicking on a link there goes to the b

ASP
page. Clicking a link on that goes to the c ASP page. The idea here is

to
keep the visited attribute throughout the process. So if I go a->b-.c>->b
using links dynamically generated the visited attribute holds up on the b
page. Even later a->b. But if I go a->b->c->a->b the visted attribute

does
NOT hold up on the b page. Is there something I can do with session so

that
if the session is made in the c page then I can make sure the visited link
in the b page holds the visited atribute? In other words abcb = abcab.
Thanks.

--
George Hester
__________________________________

Jul 19 '05 #4
Alright now I figured out what was happening. It turns out that:

http://www.myserver.com/page.asp is different then

http://www.myserver.com/page.asp?hi=hello

Since navigating around my site uses many of these parameters, I didn't
realize that visited depends on the parameters used. Not their values but
that they exist in the addressing.

So all I did was make sure that returned to pages included the parameters
that they were originally accessed with. Again not their values. For
example if I returned to page.asp above I could do it like this:

http://www.myserver.com/page.asp?hi=

and the visited would show correctly. I used the FSO to make sure that
pages accessed from out of the site would get their correct parameters.
Thanks to all who responded.

--
George Hester
__________________________________
"George Hester" <he********@hotmail.com> wrote in message
news:#l*************@TK2MSFTNGP11.phx.gbl...
So what's this? a is a ASP page. Clicking on a link there goes to the b ASP
page. Clicking a link on that goes to the c ASP page. The idea here is to
keep the visited attribute throughout the process. So if I go a->b-.c>->b
using links dynamically generated the visited attribute holds up on the b
page. Even later a->b. But if I go a->b->c->a->b the visted attribute does
NOT hold up on the b page. Is there something I can do with session so that
if the session is made in the c page then I can make sure the visited link
in the b page holds the visited atribute? In other words abcb = abcab.
Thanks.

--
George Hester
__________________________________

Jul 19 '05 #5

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

Similar topics

2
by: Eshrath | last post by:
Hi, What I am trying to do: ======================= I need to form a table in html using the xsl but the table that is formed is quite long and cannot be viewed in our application. So we are...
2
by: Donald Firesmith | last post by:
I am having trouble having Google Adsense code stored in XSL converted properly into HTML. The <> unfortunately become &lt; and &gt; and then no longer work. XSL code is: <script...
1
by: RJN | last post by:
Hi I'm using XMLTextReader to parse the contents of XML. I have issues when the xml content itself has some special characters like & ,> etc. <CompanyName>Johnson & Jhonson</CompanyName>...
1
by: JezB | last post by:
I'm binding a DataGrid web-control to data fetched from a database. However some of my data fields contain text that is within <...> characters - I notice that everything between the <> is...
1
by: RJN | last post by:
Hi I'm using XMLTextReader to parse the contents of XML. I have issues when the xml content itself has some special characters like & ,> etc. <CompanyName>Johnson & Jhonson</CompanyName>...
1
by: mike | last post by:
I've got some code like this: gametype_id = Request.Form("gametype_id") response.write "<br>gametype_id from form>" & gametype_id & "<" response.write "<br>gametype_id from database>" &...
3
by: ajay2552 | last post by:
Hi, I have a query. All html tags start with < and end with >. Suppose i want to display either '<' or '>' or say some text like '<Company>' in html how do i do it? One method is to use &lt,...
14
by: Michael | last post by:
Since the include function is called from within a PHP script, why does the included file have to identify itself as a PHP again by enclosing its code in <?php... <?> One would assume that the...
3
by: Josh Valino | last post by:
Hi, I have a client that has our product and in one of the aspx files, there is code like this: <%= SomePublicProperty %> where the public property returns a string. In the test...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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
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...

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.