Ok, that form is posting back, but it is using Ajax which is why you don't see the post.
There is a visual indicator that something is happening on the top left of the page. The response is not being cached, but it is returning a zero length content. It appears that it is posting back to the default page with only a single querystring item : POST /Default.aspx?Anthem_CallBack=true You may be able to correct the problem by turning off Ajax in the Host > Host Settings page since it may be that this forms module does it's own Ajax. One thing to keep in mind is that if you post back to a page like this form does it will automatically clear the server-side PageBlaster cache so it is not a good idea to have a form like this on your home page unless you expect that it will not be used that often. Another idea would be to put a list of links to different forms on the home page and have the user go to a different page to submit info. I'm not sure why the content length from the response was zero and why the Form didn't update with a response, but the page is not being cached by PageBlaster. If you ask the developer of that forms module he may have a better answer, and I think he also uses PageBlaster so he may know immediately the best way to set it up. |