Hello. I have 2 buttons inside <table>. It looks something like:
<form...><table...>...OKButton... ...CancelButton...</table></form>
But, actually I need something like
<form...><table...>...OKButton...</table></form>
<form...>...CancelButton...</form>....
That's because OKButton and CancelButton should lead to two different pages.
But, the problem is that both buttons should be inside one <table> to be displayed on html page properly. That means, that two buttons will stay within one <form></form> as well because <table> is inside <form>.
How to solve that question?
Thank you.
<form...><table...>...OKButton... ...CancelButton...</table></form>
But, actually I need something like
<form...><table...>...OKButton...</table></form>
<form...>...CancelButton...</form>....
That's because OKButton and CancelButton should lead to two different pages.
But, the problem is that both buttons should be inside one <table> to be displayed on html page properly. That means, that two buttons will stay within one <form></form> as well because <table> is inside <form>.
How to solve that question?
Thank you.