Need an asp programming to help with "add to cart" function

Anyone interested? I'm not an asp person and have a client
with an asp
cart. She wants a wish list feature and this cart doesn't
have it.
I'm looking for someone to store the catalogID of an item
when the user
clicks an "Add to Cart" button - then store that in the
customer table
(or a new table associated with the customer) for display in
"my
wishlist" page (could be part of the customer's "myaccount"
page).
You'd:
1) develop the function "Add to Wishlist" (add from a product
detail page)
2) set up the table(s) as necessary (access db) to store the
product
(catalogID)
3) develop the wishlist page (or section on the myaccount
page) to
retrieve and display the items stored
4) develop a way to remove an item (delete)
5) link to the product page (this should be simple)
Anyone interested? I need this quickly. If interested, email
me at
syncbox AT gmail DOT com or call 707.824.2840
Thanks!
Donna

>Right you can see the work in progress here>
http://www.stclairecreative.com/DoughBoys_Site_Folder/home.html
Before going much further I'd recommend reconsidering the use
of a textured background. They are usually included for the benefit
of the site owner only, and likely to annoy visitors. Studies on
the subject suggest they often lead to usability problems. I do
like to header graphic, but at 200K it's kinda heavy and can
probably be optimized.

Similar Messages

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Need help with add instance

    I'm can't figure out how to add a new record with add instance, see below for basic code.  The second one works but I can't re-create it.  I'm guessing something basic that I am over looking.
    I also can't figure out how to attached my pdf's so you have to download from my website.
    Thanks,
    Jay
    http://www.atg.state.vt.us/assets/files/Adding%20a%20row%20-%20does%20not%20work.pdf (does not work - need help)
    http://www.atg.state.vt.us/assets/files/Adding%20a%20row%20-%20works.pdf (this one works - I didn't create it)

    It looks as if you have saved the form as an Acrobat 7 STATIC form....you
    need to save it as a DYNAMIC form.  You will find that option in the file
    types in the save as dialogue.  I resaved it locally and your form works.
    Hope this helps

  • Freely programmed search help with external mapping

    Hi all.
    I have a freely programmed search help to search for physical inventory items.
    I map some data from the component where i use this search help to this search help via external mapping. This works fine.
    But in the search help I want to be able to change the mapped data to perform a new serach. When I change the data and start the action to search again (in the serach help component)  I still get the old field value from context so that the search returns the same result. When I close the search help afterwards the changes are suddenly visible in the using component. So my entered data are somehow transfered to the original context but not to the context of the used component.
    Any ideas?
    Thanks
    Sascha
    Message was edited by:
            Sascha Dingeldey

    Hi Sascha,
    I would suggest, that you do not work with the externally mapped attribute.
    Try to copy the value to a "local" attribute in the searchhelp context while WDDOINIT of the component.
    This is the attribute you should use for the search.
    When you change the searchvalue, it is only changed in the comnponent.
    To get the values back to the calling component you need to copy it back while you call the action submit or exit.
    Hope this helps
    Best regards, Matthias

  • Need a little bit of help with substring...

    Im very new at java programming, and need a bit of help with a problem:
    Here is what I have:
    System.out.print("Enter a string : ");
    Scanner scan = new Scanner (System.in);
    stringy = scan.nextLine();
    Now I want to split the string "stringy" like this: h:hi:hip:hipp:hippo
    I know this uses substring, but I can't figure out how to do it.
    Any help would be great, thanks!

    I know about the length method, what I dont knowis
    how to use the length and substring methodstogether
    to solve the problem i mentioned initially. There are three ingredients to perform this task:
    - String.length()
    - String.substring(int start, int end)
    - for-statement:
    http://java.sun.com/docs/books/tutorial/java/nutsandbo
    lts/for.html
    Pseudo code:IN <- input String from user
    LOOP FROM 0 -> IN.length()
    print IN.substring(?, ?)
    print ":"
    END LOOP
    Remember, Im very new. ;)Remember that by just handing you the solution, you
    will learn far less than finding things out by
    yourself.
    ; )Thanks a lot, i should be able to figure it out froom the pseudo code. :)

  • Do I need an antivirus program like McAfee with firefox?

    I see firefox has antivirus, but will it take the place of my McAfee when I switch from IE, also will it work with my mail provider and one last question how do I make the lettering on the web page larger? thank you.

    Firefox does not have antivirus, it is just a web browser. You still need an antivirus program and a firewall. Firefox does include phishing protection, by default when you visit a site it checks it against a list maintained by Google to see if the site is a known web forgery or known to contain malware, it will then warn you about the site.
    It should work with web based mail sites, though some web based mail sites may have some differences using Firefox compared to IE.
    To make the lettering larger see the [[text zoom]] and [[page zoom]] articles. If you want all sites to have larger text, you can use an add-on such as [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint].

  • Need help with trim and null function

    Hi all,
    I need help with a query. I use the trim function to get the first three characters of a string. How do I write my query so if a null value occurs in combination with my trim to say 'Null' in my results?
    Thanks

    Hi,
    Thanks for the reply. What am I doing wrong?
    SELECT trim(SUBSTR(AL1.user_data_text,1,3)),NVL
    (AL1.user_data_text,'XX')
    FROM Table
    I want the XX to appear in the same column as the
    trim.The main thing you're doing wrong is not formatting your code. The solution may become obvious if you do.
    What you're saying is:
    SELECT  trim ( SUBSTR (AL1.user_data_text, 1, 3))
    ,       NVL ( AL1.user_data_text, 'XX' )
    FROM    Tablewhich makes it clear that you're SELECTing two columns, when you only want to have one.
    If you want that column to be exactly like the first column you're currently SELECTing, except that when that column is NULL you want it to be 'XX', then you have to apply NVL to that column, like this:
    SELECT  NVL ( trim ( SUBSTR (AL1.user_data_text, 1, 3))
                , 'XX'
    FROM    Table

  • HT204382 My computer won't allow me to play a video, and it's on a quicktime. It keeps telling me I need an additional program. Help!

    One of my family members send a vidoe to me. Its on a quick time, but it doesnt allow me to play it, becuase I need an additional program. I wanted to ask what program do I need? My computer is MacBook Air. Please help me! Thank you

    You generally need Perian for FLV and AVI files, and the free version of Flip4Mac for WMA or WMV files. Some files simply can't be opened on the Mac.
    (68080)

  • ADF data table with Add,Edit,Delete functionality

    Hi Experts,
    I have a adf page where I need to implement add,edit,delete button. The table was bind with the Webservice obj call.I need to have one single button as "Add" which should add an inline row at end of the table.When I ll double click on the row I should have the in-line edit of the row.And for delete functionality,there should be delete button on each row which should delete the correspond row.Please help me to solve my problem.Please share the code to meif u ve any.my email: [email protected]
    Thanx
    Aswini

    Can you check the below links
    http://andrejusb.blogspot.com/2010/05/crud-operations-in-oracle-adf-11g-table.html
    http://andrejusb.blogspot.com/2009/11/crud-operations-in-jdeveloperadf-11g-r1.html
    ~Abhijit

  • NEED a java coder to help with a script for a programs of mine.

    I play a game, very competitively, and need someone to make and compile a script for me. I am willing to pay upwards of 100 USD for this script made to MY standards. There will be a lot of work involved...Probably 12 hours studying my game and the purpose of the script(s). I will be buying 2-3 scripts, at roughly 50-100 USD each, depending on the quality. I will transfer the money via paypal, or other means if we can reach an agreement.
    Please IM me at Chadtrapier on AIM or send an email to [email protected]
    Or...Add me on MSN - [email protected]
    We can reach an agreement with these scripts...
    Thank you, I will also check this thread, so reply if you would like.
    ~Chad

    Ummm. Do you think that's a lot of money or something? Think in the range of 40-60 per hour. And if you're talking about warcraft I don't think they java hooks to make bots. I think you need to figure out what your problem is first and maybe learn to code them yourself.

  • Need help with add text to url function

    Could anyone help me to get this working? Im kinda of noob
    and im trying to get a form to add
    http://www. in front of a text submition
    form and .com as suffix to the text, my code looks like this:
    <form name="openlocation">
    <input type="text" name="href" value="">
    <input type="button"
    onClick="location.href=document.openlocation.href.value;; "
    value="Go To" href="
    http://www.&lt;input
    type=&quot;button&quot; value=&quot;Go To&quot;
    onClick=&quot;location.href=document.openlocation.href.value;;
    &quot;&gt;.com">
    </form>

    Try this:
    <form name="openlocation">
    <input type="text" name="href" value="">
    <input type="button" onClick="location.href = '
    http://www.' +
    document.openlocation.href.value + '.com';">
    </form>
    HTH,
    Randy
    FotografistRobin wrote:
    > Could anyone help me to get this working? Im kinda of
    noob and im trying to get
    > a form to add
    http://www. in front of a text submition
    form and .com as suffix
    > to the text, my code looks like this:
    >
    > <form name="openlocation">
    > <input type="text" name="href" value="">
    > <input type="button"
    onClick="location.href=document.openlocation.href.value;;
    > " value="Go To" href="
    http://www.<input type='button'
    value='Go To'
    >
    onClick='location.href=document.openlocation.href.value;;
    '>.com">
    > </form>
    >

  • Help with Add-On Adobe FLash

    I have a Galagy Tab 3 Tablet NOT a phone. I downloaded the APK filefor android and installed it. When I open it it says I need an add on. When I go to Fire Fx add ons it is not that for me to eable it fr all sites like instructions are telling me to. I have the enable add on button checked. I just an't get the flash player to show up as an add on. I know it can be done because several people have said they have theris up and running. i really need this for one of my school programs that will only work with firefox and has to have flash.

    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox are most probably caused by a recent Flash update and/or a malfunctioning browser plugin such as Real Player.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    * [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    * [[Flash 11.3 crashes]]
    * [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    * http://forums.adobe.com/thread/1018071?tstart=0
    * http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    Please tell us if this helped!

  • Almost Christmas - I need Elves!!!  Help with my Ipad gift

    Happy Holidays all!!!
    I bought my boyfriend an IPAD for Christmas and saw somewhere an Audiobook for Texas Hold Em Poker. He wants to learn to play the game better but it needs to be an audiobook. I actually bought him the IPAD primarily for this reason but now can't find the audiobook and I'm running out of time.
    Can anyone help me?
    Thanks
    Tari

    Happy holiday to you too.
    http://www.amazon.com/Texas-HoldEm-Poker-Beginners-Package/dp/B000MTAZGI
    Just so you know you can buy audiobooks from any site that sells them and just add them to the iPad via iTunes.
    Also with an iPad he could just play Texas Hold'em and learn to do it that way so it would seem like you should add a bunch of Poker games too.
    As just to make sure you know, you can only sync items with 1 iTunes account so even if you did buy the audiobook on iTunes using your account he wouldn't be able to listen to it using his acoount.
    Any questions feel free to ask

  • Recommendations/help with  'Add Contact List'

    hello,
    i've run into a bit of a problem, need some expert advice
    before i lose my mind :)...
    i am trying to allow registered users to have a friend list.
    my problems:
    1) user is viewing their friend list and only their friends
    user_id shows up rather than their friends username...
    Here is the SQL i have as of now:
    SELECT userTable.user_id, userTable.username,
    friendTable.user_id, friendTable.them_user_id
    FROM userTable JOIN friendTable ON userTable.user_id =
    friendTable.user_id
    WHERE userTable.username = var1($_SESSION['MM_Username']
    2) when users click 'add friend' button (which is an insert
    form with 3 hidden fields, user_id, friend_id, MM_insertform), my
    code doesn't check if they are already friends with that person...
    not a huge deal, but i'd like to have this feature if i can...
    i'd be thankful for any advice, help, etc... thank you!

    > 1) user is viewing their friend list and only their
    friends user_id =
    shows up=20
    > rather than their friends username...
    > Here is the SQL i have as of now:
    > SELECT userTable.user_id, userTable.username,
    friendTable.user_id,=20
    > friendTable.them_user_id
    > FROM userTable JOIN friendTable ON userTable.user_id =3D
    =
    friendTable.user_id
    > WHERE userTable.username =3D
    var1($_SESSION['MM_Username']
    what happens if you include friendTable.username in the SQL
    statement?
    >=20
    > 2) when users click 'add friend' button (which is an
    insert form with =
    3 hidden=20
    > fields, user_id, friend_id, MM_insertform), my code
    doesn't check if =
    they are=20
    > already friends with that person... not a huge deal, but
    i'd like to =
    have this=20
    > feature if i can...
    There is a built in server behavior for Check Username that
    will check =
    for an existing user name. You might be able to modify that
    to meet =
    your needs. Keep in mind that modified code will work but
    disappear =
    from the Bindings/Server Behaviors panel.
    --=20
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web =
    Development

  • Need a good App to help with School

    I am looking for a good App that I can use to take notes on for college. I will be taking Organic Chemistry and Biochemistry. I want to be able to type in text because I can type must faster than I can write in manuscript, but I also want to be able to use my stylus to draw molecular structures and formulas and reactions and things like that. Does anyone know of a good app for this? Paid of Free, it does not matter! I love using Evernote, however, I haven't found that I can draw in notes.
    Any help is appreciated!!
    Thank you!

    I have Notability, and Pages.  I don't know for sure if you can use the stylus or not in that app. However, Notability is a good one I know you can type in it and can draw/write with it.  As far as writing your notes in it that didn't work as well for me.  This app you can also record the lecture in the same place you take the notes.  I would recomend getting it and playing with it a little before you need it.  I had a little problem with writing on it, because I set my hand on the screen too, it has a cover but that mostly stops you from making lines all over your notes with your hand. So, if you don't need to set your hand down to write then you maybe ok.  It is a good app I like it.  Good luck!

Maybe you are looking for

  • Latest Firmware Update Issues with Screen Sensitivity

    Hi All, I synced my original iphone a few days ago and it required a firmware update. Since then, I have had numerous problems with the touchscreen for email and texting. Sometimes, I cannot open a folder on one of my emails or send a text because hi

  • Network driver attachment booting cdrom single user mode

    I am attempting to boot from cdrom in single user mode and reach some network shares. However, when I boot cdrom, the server does not attach the network drivers, meaning I cannot plumb up any of my interfaces. Now, I should add that we have an XVR-30

  • Text converts to Myriad when switching between tabs

    I've had an ongoing problem since our office upgraded to Illustrator CC. I will select a line of text with the open arrow, copy it and switch to another tab to place it into another file. I hit paste and go back to the original tab. The text, still s

  • RE: Client Not Modifiable for Z Tables

    Hi all, One of our developer created 3 custom Ztables, when he is testing in testing environment, he is able to modify 2 of them using SM30, but for one table it says "Client status not modifiable". i checked his profile and he got access to SM30 and

  • Shuffle will no longer work

    Have notice that the shuffle feature on my iphone no longer works, warranty is out, have tried to restore and reset as new, but nothing seems to work. Any suggestions.