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 IamaSherpa 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: *

  1. jspuser

    Sessions

    Example in ASP dim pnref dim result dim respmsg pnref= getParam("PNREF") result = getParam("RESULT") respmsg = getParam("RESPMSG") response.write "<font color = red>" & respmsg & "</font><br>" if result = 0 then cn.execute("insert into invoices (member_id, invoice_id) values (" &...
  2. jspuser

    Sessions

    I would like to be able to write a JSP capturing the values from the shopping cart and insert this straight into a purchase order table.
  3. jspuser

    Sessions

    I am created a shopping cart successfully in servletusing the following SQL "select order_id, name, price, quantity, member_id, quantity*price as sub_total from items, orders where orders.item_id=items.item_id order by order id". What I would like to be able to do is be able to get the user to...

Part and Inventory Search

Back
Top