If I understand your question, you're asking how to pass data to another asp script for processing...is that correct?
I would guess that the best option would be to use a querystring in your link, so if you wanted to go to a page to edit an article (for example) on a news site, you're link could look like this:
Code:
<a href="edit_article.asp?id=5">Edit this article!</a>
The edit_article.asp script could then read the ID out of the querystring and reference the article in the database.
Does that help?
Goof
Bookmarks