Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: xue
  • Order by date
  1. xue

    radio button checked after submit failed

    yes, i got it. now I check which one is checked and give <%= %> = &quot;checked&quot;. <TR> <TD><INPUT TYPE=&quot;radio&quot; id=credit1 NAME=&quot;IsCredit&quot; Value=&quot;byonline&quot;<%=ifcheckonline%>><Strong>Order by Credit Card Online</Strong></TD> </TR> <TR> <TD><INPUT...
  2. xue

    radio button checked after submit failed

    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...
  3. xue

    id from insertion

    thank you very much. I think that is what I need for getting the id after insert.
  4. xue

    id from insertion

    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(&quot;INSERT INTO Cart VALUES ('2/01/01','','&quot; & strCONTROL & &quot;' )&quot;) Tempid=rs2(&quot;id&quot;) would give me something...
  5. xue

    default submit button

    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...
  6. xue

    on Error GoTo...

    Thank you very much. I think that is very helpful.
  7. xue

    sql insert order

    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...
  8. xue

    on Error GoTo...

    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
  9. xue

    cursor move to the next after insert

    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...
  10. xue

    update sql problem

    I am trying to update the quantity on cartitems table: Set rs3 = conn.Execute(&quot;UPDATE CartItems SET Qty = Qty + '&quot; & CtempQty & &quot;' WHERE Cartid = '&quot; & cartID & &quot;' And Productid = '&quot; & s & &quot;' &quot;) actually concat strings, so instead of 3+3, now it is 33 Set...
  11. xue

    request.form problem

    I have a loop that is going to display everything including the quantity: dim i i = 1 ....... </TD><TD><INPUT TYPE=&quot;textbox&quot; SIZE=5 NAME=&quot;qty<%=i%>&quot; VALUE=&quot;<%=rs(&quot;Qty&quot;)%>&quot;> i = i + 1 but later on I want to display the quantity(qty) one by one with a...
  12. xue

    refreshing problem

    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(&quot;script_name&quot;) from a book, it uses COM object and also suggested to put it on top of the...

Part and Inventory Search

Back
Top