User61956409 posted
Hi vbob,
I’d like to know what modal popup are you using. If you are using AJAX Control Toolkit ModalPopupExtender, you could open the modal popup after you submit the form using
ModalPopupExtender1.Show();
Or open it using javascript.
http://www.aspsnippets.com/Articles/ShowHide-OpenClose-AJAX-Modal-Popup-using-JavaScript-in-ASPNet.aspx
If you are using some jQuery Modal Popup plugins, you could check API documentation to find the method or option that could open modal popup, something like this.
$("#myModal").modal("show");
http://www.w3schools.com/bootstrap/bootstrap_ref_js_modal.asp
Besides, The reload() method could reload the current document, which does the same as the reload button in your browser. You could debug your code to check the value of
vbob
window.parent.location
Best Regards,
Fei Han