Hi all, I am developing an web application in
vb.net 2003
Can I stop the execution of an aspx page??...I mean:
In the event onclick of a button I call a modal window doing the next:
Response.Write("<script>javascript
:window.showModa lDialog('../form2.aspx?FormName=Form1" & "&CtrlName2="......</script>")
In the modal window I load "form2.aspx" who only insert a new record on a table and later I close It.
In the line just after the Response.write(.........) I try to read the value inserted in the modal form, but this is not possible...why??...because the debugger does not stop in the line where I call the modal window, making first the reader and later opening the modal window.
Now, this is how my program works:
step 1: call modal window
step 2: search the value in parent form.
step 3: insert record and close window
What I want is:
step 1: call modal window (stop execution)
step 2: insert record and close window
step 3: search the value in parent form.
I hope I explained my problem correctly....
Thanks in advance