Hi,
I have an asp page that display list of records. The page allow user to delete a record (one record at a time). When user click on delete link the asp call itself to call CGI program to delete a record. After call CGI program, I want to stay on the same listing page as before user click on delete link. How can I do that.
Below is my code sniplet. Please help
I have an asp page that display list of records. The page allow user to delete a record (one record at a time). When user click on delete link the asp call itself to call CGI program to delete a record. After call CGI program, I want to stay on the same listing page as before user click on delete link. How can I do that.
Below is my code sniplet. Please help
Code:
straction = request("action")
if straction > "" then
//call cgi
response.redirect (not complete)
endif
Code:
<td><a class="ver10pxgrn" href="listing.asp?custnumber=<%=custnumber(i)%>&action=D"><u>delete</u></td>