J
Jonathan Wood
I raised this issue before and never got anywhere. Thought I'd try again to
see if anyone ever resolved this.
I want to do a FORM POST to a non-ASP.NET page on another site. I can do
this with a regular HTML <form> tag. However, this doesn't work well with
ASP.NET. ASP.NET pages must have the page content within a <form> tag in
order to use ASP.NET controls and handle their events. And, since the HTML
specification does not support nested <form> tags, this means I cannot add
another HTML <form> tag to perform a non-ASP.NET form post.
Ideally, it seems like I should be able to write a normal ASP.NET button
event handler, and have the handler emulate a form post (and redirection).
Unfortunately, I cannot get this to work. This would be a cool trick as
searching the Web found lots of people with the same problem but no
solutions.
Thanks!
see if anyone ever resolved this.
I want to do a FORM POST to a non-ASP.NET page on another site. I can do
this with a regular HTML <form> tag. However, this doesn't work well with
ASP.NET. ASP.NET pages must have the page content within a <form> tag in
order to use ASP.NET controls and handle their events. And, since the HTML
specification does not support nested <form> tags, this means I cannot add
another HTML <form> tag to perform a non-ASP.NET form post.
Ideally, it seems like I should be able to write a normal ASP.NET button
event handler, and have the handler emulate a form post (and redirection).
Unfortunately, I cannot get this to work. This would be a cool trick as
searching the Web found lots of people with the same problem but no
solutions.
Thanks!