<p align="center"><input type="submit" value=" Submit Order " name="CustomQuote"></p> </form>
In the above example I hope I can pass the price difference to the cart.asp as an 'option' value set in the coPriceDiff field in cartoptions. if there is not a price diff option name then who can I best set the price difference value?
Vince and all: I figured out a way to change the price of the product in the cart. I pass the price as a session value from my asp confirm page to the cart. In inccart.asp sub addproduct(theid), I look for theid = my product name and...
' CustomQuote Price 31 July, 2019 if (theid = "custom") then addedprods(3,numaddedprods) = session("customPrice") end if
Just an FYI - I offer a rush service at checkout and it's actually a product that's hidden. When customers choose this, it's added to the customers cart with javascript and ajax, so no edits to the core files are needed, and no need to leave the shipping options page. The same could be done with pricing.
I mention this because it sounds like maybe you are editing the inccart.asp script.