How can I give alert message with Ok and Cancel button within dataset function. If ok proceed further else return in asp.net.
views:
70answers:
2The return is important. When you hit cancel confirm returns false, which tells ASP.NET not to do the post back function. If you hit OK then the postback function executes. The return is key don't forget to leave it out.
David Basarab
2009-11-20 15:17:29