Bhavesh23 says:
how to code prompted message which ask "are you sure you want to save record ?" in c# web.
if press yes it should be store record. if press no it shoud be not store record in database.
using c# web application.
its done... The Solutions is here...
<asp:button "server" ID="btnSave" Text="Save" CssClass="GreenLightButton"
OnClick="BtnSave_Click" OnClientClick="if ( ! SaveConfirmation()) return false;"/>
function SaveConfirmation() {
return confirm("Are you sure you want to Save Recordr?");
}