Hi,
I had post this question under asp forum but no one reply so I try in this forum.
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
listing.asp
I had post this question under asp forum but no one reply so I try in this forum.
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
listing.asp
Code:
straction = request("action")
if straction > "" then
//call cgi
response.redirect (not complete)
endif
<td><a class="ver10pxgrn" href="listing.asp?custnumber=<%=custnumber(i)%>&action=D"><u>delete</u></td>