I have a jQuery UI dialog which has a usercontrol in it, which I get by .load of the page it is in.
It is a simple calculator.
You pick several numbers and then click a button, a postback happens and finally you get the result in to two lables.
When I click the button inside the dialog, the postback happens and I see the result in the original page, not the dialog.
I understand the logic, but I’m looking to see if there is a way around it?
I have a jQuery UI dialog which has a usercontrol in it, which I
Share
If you are doing some server side processing that make an ajax call back to the server and on success, update your UI in the dialog represented by the div in your page, and do not close the dialog.
If you do not need any server side processing then you could write the calculation in JavaScript.