The no script solution can be based on providing a button of type submit and a name that is the value you want to send. Then, on the server, make the action dependent on the value of the name attribute, not the value, for example.
<button type="submit" name="whatever" value="Click me 0">Click me 0</button>
Now each browser will send the button &whatever=Click+me+0 . I don't have IE 7 for testing, but from what you posted, this should work.
If you have several buttons in the form, only the one that is clicked to submit the form will be successful, so only the name and value of the button will be sent.
Of course, the simplest of these is to use input of type submit, but maybe you cannot do this.
source share