hello, my situation is here in my asp page,
…
set rs=Server.CreateObject(“ADODB.recordset”)
sql=“select * from Tshirtproduct where cus_id=’”&session(“ID”)&"’"
rs.Open sql,Conn
do until rs.EOF
…
response.write("Remove")---I need to make it work
response.write("Tshirt View")
response.write(rs("quantityL"))
response.write(rs("totalprice"))
response.write(rs("systime"))
response.write(rs(“confirm”))-----this is the condition col.
…
rs.MoveNext
loop
rs.close
conn.close
…
I want to make the “remove” works-----delete this record when "confirm " value is 0 in MS SQL 2000.
hello, we only have the response.write(“remove”) on the page. Then how can we connect with this vb script to make it work when the user click the remove words ? thanks!
and I want to make a popup window for those have “remove”, how to make it show the popup window showing the message
" are you sure to delete it
Yes No"
?