I've got a WebForms site built using Progressive Enhancement which uses Master pages. Obviously, the tag is injected by default by ASP.NET so it can manage the postbacks.
I need a way of doing the following
<form action="new_url" method="get">
<input ... />
</form>
Obviously, .NET is intercepting the request with the outer and posting back to itself. I can do this with JavaScript but then I'll break the Progressive Enhancement policy of my website. Is this not possible without essentially building an ASP.NET Server Control to manage the redirection?
Thanks Martin