I have the following code:
<script type='text/javascript'> function SubmitForm() { form1.submit(); } function ShowResponse() { } </script> . . . <div> <a href='#' onclick='SubmitForm();'>Click</a> </div>
I want to capture the html response of form1.submit? How do I do this? Can I register any callback function to form1.submit method?