M
Mark
I'm writing a simple web application and wanted to have several submit
buttons on a form with a checkmark on them. So, I put the following in
the page:
<form name="requestForm" method="post" action="/PreviewRequest">
...
<input type="submit" name="previewItem[0]" value="✘"
class="textImageButton">
...
<input type="submit" name="previewItem[1]" value="✘"
class="textImageButton">
...
<input type="submit" name="previewItem[2]" value="✘"
class="textImageButton">
...
</form>
This renders wonderfully in the browser, but when I click on one of the
buttons, nothing happens. If I replace the value with value="preview",
then it works fine.
Anyone have an Idea how I can get this to post back to the server?
Thanks in advance!
Mark
buttons on a form with a checkmark on them. So, I put the following in
the page:
<form name="requestForm" method="post" action="/PreviewRequest">
...
<input type="submit" name="previewItem[0]" value="✘"
class="textImageButton">
...
<input type="submit" name="previewItem[1]" value="✘"
class="textImageButton">
...
<input type="submit" name="previewItem[2]" value="✘"
class="textImageButton">
...
</form>
This renders wonderfully in the browser, but when I click on one of the
buttons, nothing happens. If I replace the value with value="preview",
then it works fine.
Anyone have an Idea how I can get this to post back to the server?
Thanks in advance!
Mark