How do i use model popup to display server side message on data submission, example if a user wants to submit record to database , how do i use model popup to display "Data submitted successfully!", instead of using window popup like this:
}
else
{
ScriptManager.RegisterClientScriptBlock(btnSave, this.GetType(), "alert", "<script>alert('Please quantity required is more than the stock, Stock is 1 or less than 1, update stock ... !!')</script>", false);
}
}