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 SkipVought 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. sdagger2

    Classic asp: Insert new record to access database from successful PayPal payment

    Hi I have a website which uses classic asp and access database to store products which are only available to members who log in via the webpage. At the moment, a new member makes a manual payment (old school) and once payment is successful, a new record is created in the database (via admin...
  2. sdagger2

    ASP mail not working in chrome?

    Yes you are right. point well made. :-)
  3. sdagger2

    ASP mail not working in chrome?

    Hi Yes thats what threw me? why was it not working in chrome when the email code is serverside? after discussions on the wrox forums I ended up identifying the problem was the validation submission with JavaScript. All it was (return true;). As simple as that and I didn't know chrome would...
  4. sdagger2

    ASP mail not working in chrome?

    Hi I have programmed many sites in asp using the cdosys and cdo.message for contact forms etc. I am now finding that none of the forms are working in chrome? they have worked fine in IE, Firefox etc but not in chrome. Can anybody help as to why this may be and is there a fix I can do? I have...
  5. sdagger2

    ASP help with VBScript function

    Sorry. I think it is ok. I was passing in the value of the item in the function and not the qty. Sorry about that. I think I have cracked it now.
  6. sdagger2

    ASP help with VBScript function

    Hi FoxBox provided me with a great example of how I apply discounts to qty: <% function Price(n) dim p p = 1 ' price = 1 Price = (n * p) - (int(n/12)* 2 * p) end function response.Write "12 = " & Price(12) & "<br>" response.Write "14 = " & Price(14) & "<br>" response.Write "24 = " &...
  7. sdagger2

    ASP help with VBScript function

    Oh sorry vicvirk. I didn't realise you can rate people or close subjects. I'll remember for next time.
  8. sdagger2

    ASP help with VBScript function

    Thank you Foxbox You're a star. That worked exactly as it says on the tin. Brilliant help and much appreciated. I may need to tweak it a little as found out that when displaying item lines in the cart, it worked lovely, ie, 1 item line showing 12 items at £1 would be £10 which is great. But...
  9. sdagger2

    ASP help with VBScript function

    Hi I am building a shopping cart which is more or less complete but I am having difficulty trying to create a function to amend quantities. It should be a basic function but I'm not sure on the best way to do it. I am trying to code a function where before submitting the cart to paypal, I...
  10. sdagger2

    ASP shopping cart for paypal in existing site

    I think the main question i'm trying to ask is how to pass the values to paypal using ASP? When a user clicks the submit button, the post action of the form goes to PayPal, but if they view source before clicking, you can see the values (ie, change them). I would like to know how to submit the...
  11. sdagger2

    ASP shopping cart for paypal in existing site

    Hi It has been a while since I started this but now got back into it. Now that I have opened a web standard paypal account it is a lot clearer. I have managed to pass in variables to paypal and seen it working where as last time I posted questions, I was working blind. My new question...
  12. sdagger2

    Formatting Textarea content back into HTML

    Hi Thank you for the reply. I must be going mad - been a long day. I have been using a checkstring function which looks after illegal content which could break the SQL when inserting into the database - such as ' and <> as ' and </html> could break the page display. I had forgotton about the...
  13. sdagger2

    Formatting Textarea content back into HTML

    Hi I am a bit stuck. I have an asp page with a textarea in a form. I can insert/modify text and store it into an access database no problem but I would like to do the following: 1) enter text in the textarea and have the ability to add an href and/or embolden some words (very basic...
  14. sdagger2

    ASP shopping cart for paypal in existing site

    Hi vicvirk Thank you for your explanation. Thats the sort of answer I was looking for...nice and simple yet explained nicely. That is what I didn't know, would it be a case of just passing variables into paypal and receiving variables back. I didn't know if that is how it worked but your...
  15. sdagger2

    ASP shopping cart for paypal in existing site

    Hi I currently have a website written in classic ASP hosted with www.1and1.co.uk. I have developed a site a while ago and now wanting to implement a simple asp shopping cart which will then pass through the information to paypal (not sure if to choose paypal express, standard or pro yet). I...
  16. sdagger2

    cdosys and hiding recipient email addresses

    I am now wondering that using the BCC is a good idea, but doing so will leave the normal To: field blank. I don't believe this can be left blank can it? and some hosting providers don't like you using an email address being the same as the from: and not sent. Any advise?
  17. sdagger2

    cdosys and hiding recipient email addresses

    As easy as that is it? I thought there may be another attribute or feature of CDOSYS that caters for this. But never thought of it being as simple as that. Thanks
  18. sdagger2

    cdosys and hiding recipient email addresses

    Hi I am sending out an email newsletter to around 100 emails stored in an access database. All works fine but when the recipient receives the email, he/she can see all recipients that the email was sent to. Is there a way to hide all the To: email addresses? Surely there must be an easy way...
  19. sdagger2

    general xsl query

    Hi I am completely new to XML and XSL and now using an application call site publisher by Teamsite interwoven. I have managed to understand some basic XSL concepts but struggling with a problem I cannot seem to get my head round. The left navigation from our site pulls in the links from a...
  20. sdagger2

    CDO.Message AddAttachment noname

    This is strange because although the attachment is showing and working in googlemail (although with noname) but I have just tried it using my hotmail and no attachment is showing at all. I'm stumped. Anybody help? Many thanks

Part and Inventory Search

Back
Top