thought i had this sorted but was not doing what i thought..
have twobuttons
then i have the select case at the top of page
the page refreshed but the values are not displayed
ne ideas welcome
have twobuttons
Code:
<form action = "dealaddmain.asp" method = "post">
<input name="action" type="image" src="images/calcbut1_01.gif" width="108" height="50" border="0" value = "X"><input name="action" type="image" src="images/tbot14_02.gif" width="75" height="50" border="0" value = "A">
</form>
then i have the select case at the top of page
Code:
<% pagestate = Request.form("action")
Select Case pagestate
Case "X":
response.write "X"
Case "A":
response.write "A"
end select %>
the page refreshed but the values are not displayed
ne ideas welcome