|
Is this[^] what you're looking for? (Courtesy of Luc Pattyn[^])
If at first you don't succeed, you're not Chuck Norris.
|
|
|
|
|
Awesome.......
Finally I got the solution
Thanks a lot
By:
Hemant Thaker
|
|
|
|
|
Hello,
I am working on a shopping cart which can be used to set up a recurring payment, if user opt for.
A user can purchase multiple items having varying prices. He can choose recurring payment option for each item. According to the functionality requirements, some type of items can be set only for monthly recurring payment, on the other side some of them can only be set for yearly recurring payment.
For example, if user wants to set recurring payment for item 'A', he can go for 2,3,4,....12 months. But when he choose item 'B', he is only allowed to choose recurring payment for 2,3,4,.....10 years.
Currently, I am sending an independent recurring payment request to paypal for each item selected by user so that the varying needs for recurrent payment can be handled.
Sending individual recurring payment requests for each item selected is obviously not a good idea. User has to wait for a long time to complete all the transactions.
I have gone through the API's provided by PayPal & authorize.net and also googled for the same, but did not come up with any idea to setup recurring payment for multiple items with varying amount of time in a single request.
Is is possible to achieve the above functionality?
We are bound to use Authorize.net & PayPal.
Thanks.
|
|
|
|
|
Have you tried asking paypal and authorize.net? They should be able to tell ou for certain
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Yeah I have this problem - but I read it's because you need PayPal pro not standard - then you can use Payflow Pro features. It looks to be easier to code it on your site and send the individual items using pro but obviously it costs £20 / month.
I decided to stick with getting users to pay for things one at a time. Not my favourite option, but it works. I've made up for it a bit by pre-filling as much of the forms on the PayPal site as possible. So they only have to type the majority of the data once. <-- Done using the pdt variables
|
|
|
|
|
hello,
i am building an http client server communication. both client and server are placed on the same ip
(on an external equipment). inside the html document i wrote a script sending an http "get" request.
javascript has an open function that one of its attribues it url. what do i have to fill in this field?
that you,
|
|
|
|
|
er....
Please can you attach your code?
|
|
|
|
|
Got no meaning. I think you are using some javascript code that initiates one AjaX request.
Please let me know what exactly you are looking for so that we could help u.
|
|
|
|
|
hello,
thank you very much for your help.
The code bellow is the js i wrote in my html doc.
(It is taken from w3schools.)
try
{
xmlHttp=new XMLHttpRequest();
}
catch(e)
{
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
alert ("Your browser does not support XMLHTTP!");
return;
}
}
xmlHttp.open("GET",url,false);
xmlHttp.send(null);
What i wrote as url is: "http://"+the ip address of the equipment i am working on (http://10.0.4.150).
As i have already mentioned, both client and server are placed on the same equipment.
The server didn't get the request at all. I know that something does work because i got the html doc
by an http request.
I hope i explained myself properly.
Thanks again,
|
|
|
|
|
You cant access other web site using AJAX. AJAX can only access the pages that are within the same virtual directory.
Say your page which calls the AJAX is
http://www.abc.com/mno.aspx
And it calls
xmlHttpRequest.open('http://www.abc.com/xyz.aspx')
it will work fine but
xmlHttpRequest.open('http://www.xyz.com/abc.aspx') will give "Access Denied"
Hope you understand.
|
|
|
|
|
Hello everyone!
I have a problem with dropdownlist choice selection. I made 3 dropdownlists date month year for entering date of birth. For checking 31 or 30 and leap year i have to enabe autopost back..is there any way that without post back i can modify lists or change as i have seen in many websites..
|
|
|
|
|
You have posted the same question in asp.net forum and Its answered.
|
|
|
|
|
Dear All,
Can we receive Broadcasted messages on web (asp.net using c#).
Regards
Jalsa
|
|
|
|
|
|
Hi, when an asx file is played on the windows media player, i need to check if the user is logged in or registered. Can I do this on asx? Thank you.
|
|
|
|
|
asx is a media file format. why dont you check the user validation from within the page.
I dont know if the media format supports http calls to the server or not. You must load the media after checking the login status of the user.
|
|
|
|
|
Hi!
I'd like know if somebody know how get open windows name?
I want get a collection of all the open windows. I know in VB.NET, but dont know in DHTML/VBScript for Windows Vista Sidebar.
If somebody can help me, I'll to stay grateful! Thanks
Erik
|
|
|
|
|
in php you'd do this: Grab Title[^]
Maybe you can translate that into your code...
|
|
|
|
|
Hi,
I want to get the ID value or class value of my current DIV's parent using ASP. Does anybody have any idea regarding how to achieve this?
<div class="parent" ID="parent_ID">
<div class="child" ID="child_ID">
<%
tmp = <ASP code to get the "parent" DIV's class/ID value>
if tmp="parent" then
do something
else
do some more thing
end if
%>
</div>
</div>
Please help!!!
Thanks
- Jills
modified on Monday, August 3, 2009 3:27 AM
|
|
|
|
|
This looks like you're using ASP, which you said. ASP.NET replaced ASP about 7 years ago. ASP questions go in the web dev forum.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Christian Graus wrote:
ASP questions go in the web dev forum.
Sorry for posting it in the wrong section. How can I move this to webdev forum?
Regards
Jills
|
|
|
|
|
I'll move it.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I Don't think this can be done. Theres no way of knowing the values of the ID's above in ASP3.
Please correct me if i'm wrong!
|
|
|
|
|
Thanks senorbadger for the reply.
We will get the value in client side using javascript code:
this.parentNode.getAttribute('class')
But I want to do it in server side. Our website is built using ASP.
Regards,
Jills
|
|
|
|
|
I have seven to eight pages in my web. What should i do if i want to make same changes in all the pages. Rite now i open every page separately and do it sequentially. Is there any technique that i can make same change to all web pages at once?
|
|
|
|