I'm trying to create a Link button that links to a url containing parameters (like
The problem is that the parameter part ( ?param1=323 ) gets cut off when I click the button. Here is what i'm using.
<form method="GET" action="/whatever/Index?id=504477" style="margin: 0px; padding: 0px;"><input type="submit" value="Edit Report"></form>
I understand I can use a anchor tag to get the same effect, but I really would like to use a button. Any ideas? Thanks
The problem is that the parameter part ( ?param1=323 ) gets cut off when I click the button. Here is what i'm using.
<form method="GET" action="/whatever/Index?id=504477" style="margin: 0px; padding: 0px;"><input type="submit" value="Edit Report"></form>
I understand I can use a anchor tag to get the same effect, but I really would like to use a button. Any ideas? Thanks