Ask a Question related to ASP.NET General, Design and Development.
-
khawar #1
sql server and asp.net and automated payments
hi,, everybody
i have an asp.net application, where members (clients)
have their information stored in sql server Database. Now
I want to implement a thing where afterevery 30days a
member would get charged $x dollars. The payment
processing method i use is payflow pro. Can anyone help
me with how to accomplish it. I am thinking maybe
thereare triggers in database that would call up a asp.net
page that in turn will contact database to check to see
who should be charged and then start charging them. if
you know any other way which is more efficient please
advice. can some one help
thanks
bye
khawar Guest
-
sql server - automated task
Hi, Is there anyway I can tell SQL server, to update a table in one db, with info from a table in a diffferent db, each morning at a set time? ... -
Disable save, view only, micro payments
Is there a way that I can put a pdf on a web site, so that viewers can read the pdf but not save it? If so, is there then a way that I can charge... -
$1 INSTANT PAYMENTS-EASY TO DO-JOIN TODAY
TRY IT ONE TIME... I HAVE 45 PEOPLE WHO HAVE DECIDED TO GO IN WITH ME TO BUILD A DOWNLINE FOR THE NEXT MLM..I WILL SIGN UP FIRST,,THEN THEY WILL... -
$5 INSTANT PAYMENTS GUARANTEED
THIS REALLY WORKS :) Follow the directions below and in two weeks you'll have up to $20,000.00 in your PayPal account. There is a very high... -
slightly OT e-commerce payments
Hi everyone, Sorry for this slightly off topic post, however I think it will be an interesting topic if people can shed more information about... -
Boban Dragojlovic #2
Re: sql server and asp.net and automated payments
Doing it via triggers would be a bad idea.
Your best bet would be to add a field into the client table that contains
the date when the person was last charged.
Then, run a daily process (it can be a standalone EXE, or whatever, and it
can be executed by the Windows scheduler, for example). This process would
select from the database all records where the last charged date is older
than 30 days, and then it would charge them.
This way if something goes wrong, and the process doesn't run correctly for
a day or two, the next time it runs it would "catch up" to everyone.
When the process runs, it should, of course, update the "last charge date"
to "now" as soon as it bills a client.
"khawar" <khawar@socialcircles.com> wrote in message
news:003e01c35526$38552c10$a401280a@phx.gbl...> hi,, everybody
> i have an asp.net application, where members (clients)
> have their information stored in sql server Database. Now
> I want to implement a thing where afterevery 30days a
> member would get charged $x dollars. The payment
> processing method i use is payflow pro. Can anyone help
> me with how to accomplish it. I am thinking maybe
> thereare triggers in database that would call up a asp.net
> page that in turn will contact database to check to see
> who should be charged and then start charging them. if
> you know any other way which is more efficient please
> advice. can some one help
> thanks
> bye
Boban Dragojlovic Guest
-
Tibby #3
Re: sql server and asp.net and automated payments
Triggers would be bad, and what Boban said was great, but why not use a SQL
Job?
"khawar" <khawar@socialcircles.com> wrote in message
news:003e01c35526$38552c10$a401280a@phx.gbl...> hi,, everybody
> i have an asp.net application, where members (clients)
> have their information stored in sql server Database. Now
> I want to implement a thing where afterevery 30days a
> member would get charged $x dollars. The payment
> processing method i use is payflow pro. Can anyone help
> me with how to accomplish it. I am thinking maybe
> thereare triggers in database that would call up a asp.net
> page that in turn will contact database to check to see
> who should be charged and then start charging them. if
> you know any other way which is more efficient please
> advice. can some one help
> thanks
> bye
Tibby Guest



Reply With Quote

