no more like click here to bookmark this page and then have a page called bookmarks and display all of them
Main Topics
Browse All Topicsi have an application and would like to have a way so people can bookmark within my application the pages that they like the most. how can accomplish this?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
kind of like this example
http://javascript.internet
Hi gianitoo,
Your question seems to be a basic database question:
Your link should redirect to a page that bookmarks the page it came from and redirect back to it.
bookmark.asp:
<%
bookmark = request.querystring("bm")
...
' code to add a record to the user table
' for example:
rsUserBookMarks.open "select * from UserBookMarks where UserID=" & session("UserID") & " where BM='" & bookmark & "'"
if rsUserBookMarks.EOF then
rsUserBookMarks.addnew
rsUserBookMarks("UserID") = session("UserID")
rsUserBookMarks("Page") = bookmark
rsUserBookMarks.Update
end If
rsUserBookMarks.Close : set rsUserbookMarks = Nothing
response.redirect bookmark
%>
from each page you add the following:
<a href="bookmark.asp?bm=<%=r
Hope this helps!
Tiran/6footmedia.com
you can ad flaggs, so the bookmarked page knows it has just been bookmarked:
(last line of bookmark.asp)
response.redirect bookmark & "?bm"
somewhere within the bookmarked page:
<% if not isEmpty(request.QueryStrin
You might want to develope a different page that allows users to manage their bookmark list.
this is my code so far and i am getting a few errors
Microsoft OLE DB Provider for SQL Server error '80040e14'
Incorrect syntax near the keyword 'where'.
/onlinecoaching/youth/book
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../../Connections/pe
<%
set objConnection=Server.Creat
objConnection.ConnectionTi
objConnection.CommandTimeo
objConnection.Mode = 3 'adModeReadWrite
if objConnection.state = 0 then
objConnection.Open MM_peru_STRING
bookmark = request.querystring("bm")
SET rsUserBookMarks = server.createobject("ADODB
DIM SQL, rsUserBookMarks
SQL ="select * from bookmark where UserID=" & session("UserID") & " where page='" & bookmark & "'"
SET rsUserBookMarks = server.createobject("ADODB
rsUserBookMarks.open SQL, objConnection, 3, 3
if rsUserBookMarks.EOF then
rsUserBookMarks.addnew
rsUserBookMarks("UserID") = session("UserID")
rsUserBookMarks("Page") = bookmark
rsUserBookMarks.Update
end If
rsUserBookMarks.Close : set rsUserbookMarks = Nothing
response.redirect bookmark
end if
%>
Business Accounts
Answer for Membership
by: cb1393Posted on 2005-03-31 at 11:35:36ID: 13674817
Will this work?
main/javas cript/ book markthispa ge1.html
http://www.codelifter.com/