mpnut
MIS
- Aug 27, 2003
- 242
I am very new to asp (i have the "for dummys" book)Is there a way to make a submit button display something other than the "value". I have multiple buttons that, when clicked, set a value that is used on another page. But, I don't want "10045632" to display on the button. I want "Click" to display. Here's what I have
<form method="post" action="pic.asp" target="_blank">
<td align="center">
<input type="submit" name="pic" value="10045632">
</td>
<td align="center">
<input type="submit" name="pic" value="10045633">
</td>
<td align="center">
<input type="submit" name="pic" value="10045634">
</td>
</form>
The page pic.asp takes the value "10045632" and pulls up information concerning that value. I just don't want the user to see "10045632". I just want them to see the word "Click".
Is there a way to do this?
<form method="post" action="pic.asp" target="_blank">
<td align="center">
<input type="submit" name="pic" value="10045632">
</td>
<td align="center">
<input type="submit" name="pic" value="10045633">
</td>
<td align="center">
<input type="submit" name="pic" value="10045634">
</td>
</form>
The page pic.asp takes the value "10045632" and pulls up information concerning that value. I just don't want the user to see "10045632". I just want them to see the word "Click".
Is there a way to do this?