How do I find this code: <option value="">Select O
Printed From: ProductCart E-Commerce Solutions
Category: ProductCart
Forum Name: Customizing ProductCart
Forum Description: Exchange messages with other users that are customizing ProductCart.
URL: https://forum.productcart.com/forum_posts.asp?TID=4840
Printed Date: 12-July-2025 at 4:23pm Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com
Topic: How do I find this code: <option value="">Select O
Posted By: Tony
Subject: How do I find this code: <option value="">Select O
Date Posted: 07-November-2011 at 4:46pm
it is on this page: view-source:http://www.bettiesfashions.com/store/pc/viewPrd.asp?idproduct=3&idcategory=2" rel="nofollow - view-source:http://www.bettiesfashions.com/store/pc/viewPrd.asp?idproduct=3&idcategory=2 Line 394 to 455 area and it looks like this: *********************************
<!-- Start Product Options -->
|
|
|
| <div>Size:</div>
|
| <select name="idOption1" style="margin-top: 3px;">
|
|
|
| <option value="">Select One</option>
|
|
|
| <option value="64"
|
| >10.5
|
| </option>
|
|
|
| <option value="65"
|
| >11
|
| </option>
|
|
|
| <option value="53"
|
| >5
|
| </option>
|
|
|
| <option value="54"
|
| >5.5
|
| </option>
|
|
|
| <option value="56"
|
| >6.5
|
| </option>
|
|
|
| <option value="58"
|
| >7.5
|
| </option>
|
|
|
| <option value="60"
|
| >8.5
|
| </option>
|
|
|
| <option value="62"
|
| >9.5
|
| </option>
|
|
|
| <option value="55"
|
| >6
|
| </option>
|
|
|
| <option value="57"
|
| >7
|
| </option>
|
|
|
| <option value="63"
|
| >10
|
| </option>
|
|
|
| <option value="61"
|
| >9
|
| </option>
|
|
|
| <option value="59"
|
| >8
|
| </option>
|
|
|
| </select>
|
| <br />
|
| <br />
|
I REALLY appreciate any help in finding this illusive code!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
------------- ############# Best Regards, Tony States :)
|
Replies:
Posted By: sdalan
Date Posted: 07-November-2011 at 5:43pm
My guess is app-ViewPrdFuncs.asp or viewprdcode.asp.
|
Posted By: Hamish
Date Posted: 07-November-2011 at 5:49pm
The "Start Product Options" is in viewPrdC and it then calls routines in viewPrdCode like pcs_OptionsN
------------- Editing ProductCart Code?
See http://wiki.earlyimpact.com/developers/editcode" rel="nofollow - WIKI Guidelines for Editing ProductCart's ASP Source Code
|
Posted By: Tony
Date Posted: 07-November-2011 at 6:30pm
Thanks very much for the help you guys, I really appreciate it very much  ***---> sdalan, ** I could not find app-ViewPrdFuncs.asp ************************************* my goal is to organize the shoe sizes code below so they are in order and with the info you guys have provided I still can not see any of the actual code below,
| <option value="64"
|
| >10.5
|
| </option> | any further guidance on finding this stuff?... 
------------- ############# Best Regards, Tony States :)
|
Posted By: Hamish
Date Posted: 07-November-2011 at 7:13pm
Hi, You won't find the values like 64 hardcoded in the files. The list is generated from the entries in the database. Try these lines in viewPrdCode.asp and try tweaking the output temporarily to PROVE that your in the right place :-
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' START: Display Option Name '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ response.write strOptionDescrip & " " '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' END: Display Option Name
|
The loop around that code adds the rest of the option tag.
------------- Editing ProductCart Code?
See http://wiki.earlyimpact.com/developers/editcode" rel="nofollow - WIKI Guidelines for Editing ProductCart's ASP Source Code
|
Posted By: Tony
Date Posted: 07-November-2011 at 7:26pm
Thanks for the help I really appreciate it very much  there is a steep learning curve and I learn more each day
------------- ############# Best Regards, Tony States :)
|
|