Hi
i am doing my project in asp.net using
vb as script language.I want execute one stored procedure when ever user click on button say "button1".
but before executing that stored procedure i want to display multiple confirmation alerts to user example
1.amount>100 still you want to proceed?
2.Qty all ready exceeded still want to continue ?
ect .
this is my actual requirment.
my approach is like this on page load i am specifying
Button1.Attributes.Add("onclick", "if(confirm('amount>100 still you want to proceed?')){}else{return false}")
Button1.Attributes.Add("onclick", "if(confirm('Qty all ready exceeded still want to continue ?')){}else{return false}")
so when ever user click button1 its promting the final alert not all alerts .
i hope i cleared my problem.pl help me how to proceed.
thanks.