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 Mike Lewis 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. cloudseven

    Table structure for Shop

    Hey Richard, I am also doing an e-commerce site right now and after reading this thread, it's helped me a lot with designing my inventory. Great concepts!!!
  2. cloudseven

    deleting records when checkboxes are checked!!!

    alright, I got it to work though I had to make a few changes. Here is the code!!! Can someone explain to me the error handling codes. Thanks!!! Public Function Remove 'deletes an item from a user's cart if not bLoaded then Remove = false Exit Function end if 'HAD TO...
  3. cloudseven

    deleting records when checkboxes are checked!!!

    found something neat with sql and now I've replace the execute command with: c.Execute "DELETE FROM shoppingcart_new WHERE cartitemid IN (" & itemreference & ")" and took out the for loop: Case "DELETE" oCart.Remove(Request.Form("itemcheck")) still...
  4. cloudseven

    deleting records when checkboxes are checked!!!

    hi there I have a checkbox for each item displayed which contains a cartid for each item. When a button is pressed, I have a function which takes all the values of the checked boxes, and go into the database and delete the items matching the cartid. I got it working, but it only works when a...
  5. cloudseven

    passing a querystring within a form???

    hey onpnt, I'd tested it already with a hyperlink containing the querystring request("cat") and I get the value on the second page. It's when I use it within the form that I can't get the value. I don't have it anywhere else on the products.asp page.
  6. cloudseven

    passing a querystring within a form???

    hey onpnt, this is what displays under 'view source'. I'd tried using ./ and ../ for the parent directory and same thing! <a href=&quot;../products.asp?cat=&quot;>Continue Shopping</a>
  7. cloudseven

    passing a querystring within a form???

    hmmm...let me check...as for the directory thing, not sure, I'd dled this script from somewhere...I would like know what it is for a parent directory myself. Out of curiosity, what is this mean? request.servervariables(&quot;SCRIPT_NAME&quot;)
  8. cloudseven

    passing a querystring within a form???

    sorry, not quite sure what you mean? you mean in the shoppingCart.asp where I want to get the querystring? Did I check the output for request(&quot;cat&quot;)???
  9. cloudseven

    passing a querystring within a form???

    hey there, I found my solution but still it's bugging me why the querystring isn't capturing the value? Anyhoo, I just assigned a session variable to request(&quot;cat&quot;) and reference the session variable when I need it. ***scratching head***
  10. cloudseven

    passing a querystring within a form???

    hey whloo...I'm not at home now but will post it once I get home. Thanks.
  11. cloudseven

    passing a querystring within a form???

    tried that too, doesn't work...thanks for your response tho!
  12. cloudseven

    passing a querystring within a form???

    hi there, I'd downloaded a shopping cart script and I'm just playing around with it. It works great and adds the appropriate items, I'm having trouble passing a querystring which holds a value to redirect to a particular page. Here is some code...Any help would be great, I'm scratching my...
  13. cloudseven

    Trouble with my cookie values?

    I am also doing a shopping cart for someone and I'm using a temp table for items in cart. If they check out then I write the temp table to an order table and delete the items in the temp table. If that helps!!!
  14. cloudseven

    negative recordcount in mysql

    hi there, I'm trying to get a recordcount for one of my tables in mysql, but it keeps on giving me a negative value when there are two records in there. Thanks in advance!!! rs.open sql, c, adOpenStatic, adLockreadOnly, adcmdtext
  15. cloudseven

    comma in mysql database...retrieving sizes....

    hey gary, yeh usually I use separate fields but I wanted to try another way...thanks a bunch!
  16. cloudseven

    comma in mysql database...retrieving sizes....

    hi there, I am working on an e-commerce site and I have different sizes for a line of clothing. Instead of adding different fields for S,M,L. I would like to just add one field that contains all the sizes separated by commas. I don't know how to retrieve it from the database into a selectbox...
  17. cloudseven

    sliding div position help!!!

    hi there, I need help with this slidein/out script. http://cloudseven.www4.dotnetplaygr.../cloudseven.asp the divs right now are absolute positioned, and what I want to do is make it relative to where the text says 'position div here'. but making the z-index of the divs under the table with a...
  18. cloudseven

    OnClick - load asp page....

    hi all, I have a simple question here. I'm playing around with javascript and using an onclick even where when clicked, triggers a layer containing an iframe[index.asp]. right now my layer shows...but it asks me whether to open or save my asp page. Why is that alert coming up? And plus my asp...

Part and Inventory Search

Back
Top