Hi all
I am developing a page where user can insert update delete his information. I am doing as follows
when user clicks the "Delete" button, a MsgBox pops and asks to confirm the delete process.
if (user clicks "yes" in msgbox)
system deletes the information.
else
system does not delete the information and loads the page default values.
What I want to do is:
if (user clicks "delete" button on page)
1) the page gets disabled.
2) a message box pop up
(2.1) user should not be able to do anything on the page unless he clicks either "yes" or "no" on the msgbox
(2.2) msgbox must remain on top of page even if user clicks on the page after msgbox pop up.
I want to implement the above if condition and specifically (1) and (2) fully.
please help...
thanks in advance..