I have three radio buttons. after select one radio button and hit submit,
I Want the button stays selected after submit fails. but so far, there is no luck.
if there is a way that I can use the id in radio button, please tell me a way.
thank you very much.
the following code says that I give...
I have the id field which is a primary key, identifer, and auto generated. but after insert statement, I can not get the id right away:
Set rs2 = conn.Execute("INSERT INTO Cart VALUES ('2/01/01','','" & strCONTROL & "' )")
Tempid=rs2("id")
would give me something...
thank vasah20 very much for your very useful informations on my previous two question.
I have several submit buttons. but unfortunately, the Delete submit button is my first submit button, and whenever I hit enter, the Delete submit button gets called and my records gets deleted. I can not...
thanks hblackorby for previous question.
I found the problem that sql table may insert every record above the first record or insert every record below the first record. it seems changes upon me restart my computer. that is very bad for my code since I always need to retrieve the last record...
I have a statement like
On Error GoTo CheckError
....
CheckError:
....
but it is giving me the syntax error on this one, can anyone help? I use it on ASP/vbscript
I want to be able to add a record and move the cursor to the next, so every thing came after should alway add at the end. but with the code following, after I add my first record, rest of my records always add on top of my last record, so it is
2
3
4
5
6
1
anybody know how can I ask the cursor...
I am trying to update the quantity on cartitems table:
Set rs3 = conn.Execute("UPDATE CartItems SET Qty = Qty + '" & CtempQty & "' WHERE Cartid = '" & cartID & "' And Productid = '" & s & "' ")
actually concat strings, so instead of 3+3, now it is 33
Set...
I have a loop that is going to display everything including the quantity:
dim i
i = 1
.......
</TD><TD><INPUT TYPE="textbox" SIZE=5 NAME="qty<%=i%>" VALUE="<%=rs("Qty")%>">
i = i + 1
but later on I want to display the quantity(qty) one by one with a...
I have a problem with browser refresh, every time it refreshes, my qty in the cartitem table(sql database) add 1.
I have tried :
Response.buffer = true
response.clear
response.redirect request("script_name")
from a book, it uses COM object and also suggested to put it on top of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.