One feature I am working on involves a popup that will display a message to the user confirming that their information has been successfully submitted. The ID of this popup is NewCustomerStatusPopUp, and I want it to be triggered once the information has been properly inserted into the database. Can someone guide me on how to call the JavaScript function to show the popup when all the necessary information has been submitted?
<div id="NewCustomerStatusPopUp">
<asp:Label ID="lblStatus" Text="" runat="server"/>
</div>
For styling, here is the CSS:
#NewCustomerStatusPopUp
{
position: fixed;
width: 300px;
height: 250px;
top: 50%;
left: 50%;
margin-left:-255px;
margin-top:-150px;
border: 10px solid #9cc3f7;
background-color:White;
padding: 10px;
z-index: 102;
font-family:Verdana;
font-size: 10pt;
border-radius:10px;
-webkit-border-radius:20px;
-moz-border-radius:20px;
}
Any assistance or advice on achieving this functionality would be greatly appreciated.
Thank you.