I have a form with two parts. The top part allows the user to select items they want to purchase. I installed the Ajax toolkit from Microsoft, then I put a update panel on the top part. It works fine. When a user clicks the "update" button, it will update the final price of all the items they have selected.
Here's my problem. The lower part of the form is where they can enter their personal information. When the user clicks the "update" button on the top part, the lower parts validate is triggered. My update panel is only on the top part. Why is it acting like the entire form is submitted when the user clicks the button located inside of my update panel? Shouldn't ajax only send information in the update panel to the server?
Thanks for any help.