Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

simple online payment component
is there something as easy as just providing a link to an inexpensive credit
card approval/payment component to integrate into an asp.net app. My
question isn't about the linking process itself but rather about my wanting
a very simple but robust credit card transaction component that I would not
have to build myself. I already have a navigation system to display product.
thank you  -greg



Report this thread to moderator Post Follow-up to this message
Old Post
Hazz
09-28-04 09:01 AM


Re: simple online payment component
Hi Greg,

Not exactly sure what you're after, but if it is a component that helps you
do credit card transactions, there are several listed here:

http://www.asp.net/ControlGallery/d...ry=6&tabindex=0

"Hazz" <hazz@nospameroosonic.net> wrote in message
news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl...
> is there something as easy as just providing a link to an inexpensive
> credit card approval/payment component to integrate into an asp.net app.
> My question isn't about the linking process itself but rather about my
> wanting a very simple but robust credit card transaction component that I
> would not have to build myself. I already have a navigation system to
> display product. thank you  -greg
>


Report this thread to moderator Post Follow-up to this message
Old Post
Ken Cox [Microsoft MVP]
09-28-04 09:01 AM


Re: simple online payment component
You'll need a component to hook up with some kind of payment system.
Here's some links that can get you started:
http://www.componentone.com/paypal/
http://www.verisign.com/products-se...ex.
html
http://www.paypal.com/cgi-bin/websc...erchant-outside

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net



"Hazz" <hazz@nospameroosonic.net> wrote in message
news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl...
> is there something as easy as just providing a link to an inexpensive
> credit card approval/payment component to integrate into an asp.net app.
> My question isn't about the linking process itself but rather about my
> wanting a very simple but robust credit card transaction component that I
> would not have to build myself. I already have a navigation system to
> display product. thank you  -greg
>



Report this thread to moderator Post Follow-up to this message
Old Post
Steve C. Orr [MVP, MCSD]
09-28-04 09:01 AM


Re: simple online payment component
"Hazz" <hazz@nospameroosonic.net> wrote in
news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl:

> is there something as easy as just providing a link to an inexpensive
> credit card approval/payment component to integrate into an asp.net
> app. My question isn't about the linking process itself but rather
> about my wanting a very simple but robust credit card transaction
> component that I would not have to build myself. I already have a
> navigation system to display product. thank you

Paypal has .NET components ... and might suit your purposes for low volume
sites.


--
Lucas Tam (REMOVEnntp@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
[url]http://members.ebay.com/aboutme/spot18/[/url]

Report this thread to moderator Post Follow-up to this message
Old Post
Lucas Tam
09-28-04 09:01 AM


Re: simple online payment component
Lucas Tam <REMOVEnntp@rogers.com> wrote in
news:Xns9572B980A9F1nntprogerscom@140.99.99.130:

> "Hazz" <hazz@nospameroosonic.net> wrote in
> news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl:
> 
>
> Paypal has .NET components ... and might suit your purposes for low
> volume sites.

Here's the paypal link:

https://www.paypal.com/cgi-bin/webs...dev_kit-outside


--
Lucas Tam (REMOVEnntp@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
[url]http://members.ebay.com/aboutme/spot18/[/url]

Report this thread to moderator Post Follow-up to this message
Old Post
Lucas Tam
09-28-04 09:01 AM


Re: simple online payment component
I don't know about other banks, but Bank of America accepts online credit
card transactions.
http://www.bankofamerica.com/mercha...tps://BofA_URL, sent the request then got the HttpWebResponse.
Next I just parsed thru the HttpWebResponse to see if the transaction was
good or not, then continued in the .NET application

The POST Method contains, your merchant account, user cc number, exp date,
amount, first name, last name, address, etc... all the required information
needed for a credit card transaction.
You can also use the same URL for crediting back a card as well.

Just an FYI.


"Hazz" <hazz@nospameroosonic.net> wrote in message
news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl...
> is there something as easy as just providing a link to an inexpensive
credit
> card approval/payment component to integrate into an asp.net app. My
> question isn't about the linking process itself but rather about my
wanting
> a very simple but robust credit card transaction component that I would
not
> have to build myself. I already have a navigation system to display
product.
> thank you  -greg
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
Gabe Garza
09-28-04 09:01 AM


Re: simple online payment component
Thank you Ken. I actually went there and was surprised that there are
hundreds of hits but no reviews of those controls. That didn't deter me from
going to the creators website for more info but it would be helpful.
Thanks Ken.   -greg

"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> wrote in message
news:%23yn0o9PpEHA.1156@TK2MSFTNGP10.phx.gbl...
> Hi Greg,
>
> Not exactly sure what you're after, but if it is a component that helps
> you do credit card transactions, there are several listed here:
>
> http://www.asp.net/ControlGallery/d...ry=6&tabindex=0
>
> "Hazz" <hazz@nospameroosonic.net> wrote in message
> news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl... 
>



Report this thread to moderator Post Follow-up to this message
Old Post
Hazz
09-28-04 02:04 PM


Re: simple online payment component
Thank you Steve.  You just gave me some new options. I will have to
re-evaluate and re-review the PayPal route. Not sure if it has changed but I
remember when my PayPal experience as a consumer required that I set up my
own credit card account with PayPal first prior to being able to purchase
and item. I recall that not being very user friendly....much easier to just
use my own credit card on a per transaction basis... Not sure if anyone else
had that experience or impression. Perhaps it was less expensive for the
online merchant to do business but it added a cumbersome step for the
potential buyer.
Thanks again Steve, some interesting options here.  -greg

"Steve C. Orr [MVP, MCSD]" <Steve@Orr.net> wrote in message
news:eqKQfbRpEHA.1152@TK2MSFTNGP11.phx.gbl...
> You'll need a component to hook up with some kind of payment system.
> Here's some links that can get you started:
> http://www.componentone.com/paypal/
> http://www.verisign.com/products-se...e
x.html
> http://www.paypal.com/cgi-bin/websc...erchant-outside
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://Steve.Orr.net
>
>
>
> "Hazz" <hazz@nospameroosonic.net> wrote in message
> news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl... 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
Hazz
09-28-04 02:04 PM


Re: simple online payment component
Thank you Lucas.
Please read my response to Steve above about my old experiences with PayPal.
Thank you. -greg

"Lucas Tam" <REMOVEnntp@rogers.com> wrote in message
news:Xns9572B980A9F1nntprogerscom@140.99.99.130...
> "Hazz" <hazz@nospameroosonic.net> wrote in
> news:OZAzYsPpEHA.1588@TK2MSFTNGP09.phx.gbl:
> 
>
> Paypal has .NET components ... and might suit your purposes for low volume
> sites.
>
>
> --
> Lucas Tam (REMOVEnntp@rogers.com)
> Please delete "REMOVE" from the e-mail address when replying.
> [url]http://members.ebay.com/aboutme/spot18/[/url]



Report this thread to moderator Post Follow-up to this message
Old Post
Hazz
09-28-04 02:04 PM


Re: simple online payment component
Thank you for the link Lucas.  -greg

"Lucas Tam" <REMOVEnntp@rogers.com> wrote in message
news:Xns9572BE08E6A2nntprogerscom@140.99.99.130...
> Lucas Tam <REMOVEnntp@rogers.com> wrote in
> news:Xns9572B980A9F1nntprogerscom@140.99.99.130:
> 
>
> Here's the paypal link:
>
> https://www.paypal.com/cgi-bin/webs...dev_kit-outside
>
>
> --
> Lucas Tam (REMOVEnntp@rogers.com)
> Please delete "REMOVE" from the e-mail address when replying.
> [url]http://members.ebay.com/aboutme/spot18/[/url]



Report this thread to moderator Post Follow-up to this message
Old Post
Hazz
09-28-04 02:04 PM


Sponsored Links




Last Thread Next Thread Next
Pages (2): [1] 2 »
Search this forum -> 
Post New Thread

ASP .NET archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 04:25 AM.

 

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.