Hi Shmoop,
the first thing here is that what I would probably do in this circumstance is have ONE results page, but have different actions depending on the button pressed. The reason is that if you have the option of doing something client side or server side, normally best to choose server side.So in the calling page you have
<input type="submit" name="mybutton" value="first">
<input type="submit" name="mybutton" value="second">
etc, and then in the results page
<% if request.form("mybutton") = "first" then %>
. . . all the html / asp to do with that one
<% elseif request.form("mybutton") = "second" then %>
. . . and all the html / asp to do with the second one
<% end if %>
But, if that is not a possibility then you can do what you want with a bit of javascript. For instance . . .
<HTML>
<HEAD>
<script language=javascript>
function gotopage(act) {
document.myform.action = act;
document.myform.submit();
}
</script>
</HEAD>
<BODY>
<form method="post" name="myform" action="doesntmatter.htm">
<A href="javascript:gotopage('page1.htm')"><IMG name="imgname" border="0" src="imgname.gif" ></a>
<input type="submit" name="button" value="hghgh" onclick="gotopage('page2.htm')">
</form>
</BODY>
</HTML>
I've put in one image button and one submit button to illustrate how to do it with either.
All the best
Vince
------------------
Internet Business Solutions S.L.(Spain)