Am using the below message box in asp.net web application. Now i want to convert this message box as a confirmation message box and do something when it is true else means r
I think you are going about this the wrong way. You should display this confirmation before posting back, and then only post back if they choose to "Apply".
Using ASP.NET web controls, the Button
control has an OnClientClick property which can be used to call javascript prior to Http POST:
You could do something like this: