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

Viewing/Modifying Link status (new, visited, etc) with ASP

Greetings.

Using CSS, a programmer can set the color for an href link and a different
color for a VISITED href link.

Anyone know where this "list" of visited links is stored?

Is it accessible (can I read it) with ASP?

Is it updateable (can I add new links to the list) with ASP?

I have a forum that threads topics/subtopics on the first (TOPICS) page,
then displays the entire thread on the second (POSTS) page.

Each topic/subtopic ont the TOPICS page has a unique ID thus is a unique
link so when a user views the entire thread, only the link they clicked on is
colored as a visited link when they return to the TOPICS page after viewing
the thread.

I would like to update all the message links for the thread (as listed on
the POSTS page) when a viewer visits a topic so when they return to the
TOPICS page, all the links for that thread are seen as visited.

Much thanks in advance for sharing your experience.
Jul 22 '05 #1
6 1461
"- jes" <je*@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
Greetings.

Using CSS, a programmer can set the color for an href link and a different
color for a VISITED href link.

Anyone know where this "list" of visited links is stored?
On the client.
Is it accessible (can I read it) with ASP?
No - ASP is server technology.
Is it updateable (can I add new links to the list) with ASP?
No, for the same reason.
I have a forum that threads topics/subtopics on the first (TOPICS) page,
then displays the entire thread on the second (POSTS) page.

Each topic/subtopic ont the TOPICS page has a unique ID thus is a unique
link so when a user views the entire thread, only the link they clicked on is colored as a visited link when they return to the TOPICS page after viewing the thread.

I would like to update all the message links for the thread (as listed on
the POSTS page) when a viewer visits a topic so when they return to the
TOPICS page, all the links for that thread are seen as visited.


You would have to maintain your own logic then on the server.
Jul 22 '05 #2
Gazing into my crystal ball I observed "=?Utf-8?B?LSBqZXM=?="
<je*@discussions.microsoft.com> writing in
news:1F**********************************@microsof t.com:
Greetings.

Using CSS, a programmer can set the color for an href link and a
different color for a VISITED href link.
Actually, the author can _suggest_ a color, but the user's browser has
ultimate control.

Anyone know where this "list" of visited links is stored?
In the user's history and cache. If the cache is emptied, all links turn
to unvisited.

Is it accessible (can I read it) with ASP?
You can make suggestions with ASP, but you must do it document level, an
external stylesheet will not work.

Is it updateable (can I add new links to the list) with ASP?
New links of what? You're not being clear.

I have a forum that threads topics/subtopics on the first (TOPICS)
page, then displays the entire thread on the second (POSTS) page.

Each topic/subtopic ont the TOPICS page has a unique ID thus is a
unique link so when a user views the entire thread, only the link they
clicked on is colored as a visited link when they return to the TOPICS
page after viewing the thread.

I would like to update all the message links for the thread (as listed
on the POSTS page) when a viewer visits a topic so when they return to
the TOPICS page, all the links for that thread are seen as visited.
Isn't that going to be confusing for the visitor? If there are 20
responses in this thread, how am I going to know which ones I have read if
all appear as visited?

Much thanks in advance for sharing your experience.


--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #3
Hi Adrienne -

Since all the messages for a topic are listed on the POSTS page (topic,
replies), it will be assumed that all are read and I want to use ASP(?) or
some other method to set all those message links as "visited".

When the user returns later (or even refreshes the TOPICS page), any new
posts since they viewed the POSTS page should still show up as new links.

Thanks for you interest/help.

"Adrienne" wrote:
Gazing into my crystal ball I observed "=?Utf-8?B?LSBqZXM=?="
<je*@discussions.microsoft.com> writing in
news:1F**********************************@microsof t.com:
Greetings.

Using CSS, a programmer can set the color for an href link and a
different color for a VISITED href link.


Actually, the author can _suggest_ a color, but the user's browser has
ultimate control.

Anyone know where this "list" of visited links is stored?


In the user's history and cache. If the cache is emptied, all links turn
to unvisited.

Is it accessible (can I read it) with ASP?


You can make suggestions with ASP, but you must do it document level, an
external stylesheet will not work.

Is it updateable (can I add new links to the list) with ASP?


New links of what? You're not being clear.

I have a forum that threads topics/subtopics on the first (TOPICS)
page, then displays the entire thread on the second (POSTS) page.

Each topic/subtopic ont the TOPICS page has a unique ID thus is a
unique link so when a user views the entire thread, only the link they
clicked on is colored as a visited link when they return to the TOPICS
page after viewing the thread.

I would like to update all the message links for the thread (as listed
on the POSTS page) when a viewer visits a topic so when they return to
the TOPICS page, all the links for that thread are seen as visited.


Isn't that going to be confusing for the visitor? If there are 20
responses in this thread, how am I going to know which ones I have read if
all appear as visited?

Much thanks in advance for sharing your experience.


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

Jul 22 '05 #4
Thanks for the reply Tom -

This may be the wrong place to pursue this line of questioning, but since
the visited links list is client side, do you think JavaScript could be used
to manipulate that data?

Again, much thanks for your time.


"Tom Kaminski [MVP]" wrote:
"- jes" <je*@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
Greetings.

Using CSS, a programmer can set the color for an href link and a different
color for a VISITED href link.

Anyone know where this "list" of visited links is stored?


On the client.
Is it accessible (can I read it) with ASP?


No - ASP is server technology.
Is it updateable (can I add new links to the list) with ASP?


No, for the same reason.
I have a forum that threads topics/subtopics on the first (TOPICS) page,
then displays the entire thread on the second (POSTS) page.

Each topic/subtopic ont the TOPICS page has a unique ID thus is a unique
link so when a user views the entire thread, only the link they clicked on

is
colored as a visited link when they return to the TOPICS page after

viewing
the thread.

I would like to update all the message links for the thread (as listed on
the POSTS page) when a viewer visits a topic so when they return to the
TOPICS page, all the links for that thread are seen as visited.


You would have to maintain your own logic then on the server.

Jul 22 '05 #5
Gazing into my crystal ball I observed "=?Utf-8?B?LSBqZXM=?="
<je*@discussions.microsoft.com> writing in
news:89**********************************@microsof t.com:

"Adrienne" wrote:
Gazing into my crystal ball I observed "=?Utf-8?B?LSBqZXM=?="
<je*@discussions.microsoft.com> writing in
news:1F**********************************@microsof t.com:
> Greetings.
>
> Using CSS, a programmer can set the color for an href link and a
> different color for a VISITED href link.
Actually, the author can _suggest_ a color, but the user's browser has
ultimate control.
>
> Anyone know where this "list" of visited links is stored?


In the user's history and cache. If the cache is emptied, all links
turn to unvisited.
>
> Is it accessible (can I read it) with ASP?


You can make suggestions with ASP, but you must do it document level,
an external stylesheet will not work.
>
> Is it updateable (can I add new links to the list) with ASP?


New links of what? You're not being clear.
>
> I have a forum that threads topics/subtopics on the first (TOPICS)
> page, then displays the entire thread on the second (POSTS) page.
>
> Each topic/subtopic ont the TOPICS page has a unique ID thus is a
> unique link so when a user views the entire thread, only the link
> they clicked on is colored as a visited link when they return to the
> TOPICS page after viewing the thread.
>
> I would like to update all the message links for the thread (as
> listed on the POSTS page) when a viewer visits a topic so when they
> return to the TOPICS page, all the links for that thread are seen as
> visited.


Isn't that going to be confusing for the visitor? If there are 20
responses in this thread, how am I going to know which ones I have
read if all appear as visited?
>
> Much thanks in advance for sharing your experience.

Hi Adrienne -

Since all the messages for a topic are listed on the POSTS page (topic,
replies), it will be assumed that all are read and I want to use ASP(?)
or some other method to set all those message links as "visited".


As my Mother used to say, "When you assume you make an ass out of you and
me." Never assume anything.

When the user returns later (or even refreshes the TOPICS page), any
new posts since they viewed the POSTS page should still show up as new
links.
Let the visitors browser do the work. Why reinvent the wheel?

Thanks for you interest/help.


No problem. HTH

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #6
"- jes" <je*@discussions.microsoft.com> wrote in message
news:A3**********************************@microsof t.com...
Thanks for the reply Tom -

This may be the wrong place to pursue this line of questioning, but since
the visited links list is client side, do you think JavaScript could be used to manipulate that data?


I have no idea.
Jul 22 '05 #7

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

Similar topics

2
by: Kevin Lyons | last post by:
Hello, Can anyone assist me with what I am trying to do with the following code (six different scenarios to try to make the functionality work correctly)? I want to always (and ONLY) display...
2
by: joeandtel | last post by:
Is there a way to check if a link has been visited using JavaScript? I have a table of data and the front of each row has a link to another page. Of course the browser knows if a link has been...
0
by: Scott Morford | last post by:
This is a followup to a question I posed last summer. http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=utf-8&selm=3f451dd4%240%241095%247f8943f3%40newsreader.visi.com I'm developing a weed...
2
by: Dot net work | last post by:
I have a 3rd party link button control that when clicked does not retain it's visited color status on postback. (Actually, the first control on the form does, but all others do not.) When I...
31
by: TC | last post by:
I'm looking for opinions on ways to show visitors, your links will send them off-site (to another website). The following was suggested: Look at the three links under the third paragraph:...
4
by: ben.dixon | last post by:
Hi, I'm using links for navigation on a test page, so each link will go to a question in the test e.g. Question 1, Question 2 etc. For each link i am using an Outer Border, Middle border and...
3
by: hestres | last post by:
Hello, I'm working on some link styles for this page: http://www.house.gov/velazquez/lh0205tres/reports.html I want all the links to always display in red (#CC0000), but in IE6 and 7 they...
3
by: gouthami | last post by:
I have a tree Node in my application and i have set the following code in the NavigateUrl property of the tree node. Please see my code below (which is present in my 'code behind' c# file). My...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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?
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...
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...

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.