Forum Moderators: open

Message Too Old, No Replies

ASP Bookmarks

         

Ashy

12:46 pm on May 19, 2004 (gmt 0)

10+ Year Member



Hi

Is it possible to add a bookmark to this script:

<a href="research-articletemplate.asp?ArticleID=<%=(rsArticles.Fields.Item("ArticleID").Value)%>">Read More</a>

The problem ive got it that there is a large banner section on the page, and when they click the link to view the news article, there is a chance that on say 800x600 some users wont realise that the article is being displayed (as they would need to scroll)

So im trying to put a bookmark on the page where the article will be so when the user clicks the link it will automatically position the screen so the news article is shown.

Cheers
Ash

sullen

12:51 pm on May 19, 2004 (gmt 0)

10+ Year Member



<a href="research-articletemplate.asp?ArticleID=<%=(rsArticles.Fields.Item("ArticleID").Value)%>#namedanchor">Read More</a>

should do it, or did I misunderstand?

Ashy

1:21 pm on May 19, 2004 (gmt 0)

10+ Year Member



tried that but it doesnt seem to work :(

this is the code ive tried using:

<a href="articles.asp?ArtCatID=<%=(rsArticleCats.Fields.Item("artcatID").Value)%>"#marker><%=(rsArticleCats.Fields.Item("ArticleCategory").Value)%></a>

Ashy

1:22 pm on May 19, 2004 (gmt 0)

10+ Year Member



aha! duh, missed out the "

that works, cheers mate :D