A brief history about my exposure to ASP: From reading examples/faq's etc. I've done several asp pages that used SELECT, INSERT or UPDATE queries but in each case all the variables came from form data. (form = post) So, I know how to make a db connection, create a recordset, etc.
My current situation is the touchnet payment gateway. It processes a credit card payment and upon completion can send certain parameters to a "Post URL" that I specify in the touchnet application.
This Post URL is the page I have to create and is never seen by the end user - there's a separate "success page" that tells them they paid successfully.
With an ASP, how would I get the parameters that touchnet is sending to the Post URL (the page i'll be creating). I've only ever gotten parameters from form data.
I'd want to do something like:
UPDATE TABLE SET TABLE.TRANS_CODE = ‘pmt_status' & '-' & 'tpg_trans_id' WHERE PK_FIELD = 'EXT_TRANS_ID';
pmt_status is the word "success" or "failure"
tpg_trans_id is always a number
EXT_TRANS_ID is the primary key that links the touchnet transaction with my database info.
My current situation is the touchnet payment gateway. It processes a credit card payment and upon completion can send certain parameters to a "Post URL" that I specify in the touchnet application.
This Post URL is the page I have to create and is never seen by the end user - there's a separate "success page" that tells them they paid successfully.
With an ASP, how would I get the parameters that touchnet is sending to the Post URL (the page i'll be creating). I've only ever gotten parameters from form data.
I'd want to do something like:
UPDATE TABLE SET TABLE.TRANS_CODE = ‘pmt_status' & '-' & 'tpg_trans_id' WHERE PK_FIELD = 'EXT_TRANS_ID';
pmt_status is the word "success" or "failure"
tpg_trans_id is always a number
EXT_TRANS_ID is the primary key that links the touchnet transaction with my database info.