Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

ASP.NET Forum


You are currently viewing our ASP.NET Forum as a guest. Please register to participate.
Login



Reply
Problem reading data sent via post method from another site
Old 11-22-2010, 10:24 AM Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
I have the following ASP page to which I am posting data (or rather, I am posting the data via another form to the credit card verification site and they are posting the results to this page if the card has been accepted). If I view the post data (easily done by creating an error in the ASP code), I see this:

Accepted=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3 AU&ACCOUNTNUMBER=************5454&authcode=TEST&Au thNo=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3AU&h istoryid=169538915&orderid=127359668&recurid=0&ref . . .

which is correct. However, all of the values in the asp code are printing as blank (the Request.Form("valuename") are empty).

The ultimate goal here is for the values to be passed to this page, and then redirected to another NON-SSL Accepted page (to get around a known issue with the processor's script posting to https) which I will use to write a SQL database record to store the order information. I am hung up on retrieving the fields from the post data, however. Any help would be appreciated.

Joel


----------- Code -----------
HTML Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
 <SCRIPT>
  function redirect() {
   window.location = "http://www.caraccessories.com/FastChargeApproved.asp"
  }
 </SCRIPT>
</head>
<body onload="">

<form name="submitit" action="http://www.caraccessories.com/FastChargeApproved.asp" method="post">
<p>
accepted: <%Request.FORM("accepted")%>
<br>
accountnumber: <%Request.FORM("accountnumber")%>
<br>
authcode: <%Request.Form("authcode")%>
<br>
AuthNo: <%Request.Form("authno")%>
<br>
pin_num: <%Request.Form("pin_num")%>
<br>
amount: <%Request.Form("amount")%>
<br>
remote_addr: <%Request.Form("remote_addr")%>
<br>
acctid: <%Request.Form("acctid")%>
<br>
ipaddr: <%Request.Form("ipaddr")%>
<br>
ci_email: <%Request.Form("ci_email")%>
<br>
ci_phone: <%Request.Form("ci_phone")%>
<br>
ci_billaddr: <%Request.Form("ci_billaddr1")%>
<br>
ci_billaddr2: <%Request.Form("ci_billaddr2")%>
<br>
cibillcity: <%Request.Form("ci_billcity")%>
<br>
ci_billstate: <%Request.Form("ci_billstate")%>
<br>
ci_billzip: <%Request.Form("ci_billzip")%>
<br>
ci_billcountry: <%Request.Form("ci_billcountry")%>
<br>
<br>
ci_shipaddr1:  <%Request.Form("ci_shipaddr1")%>
<br>
ci_shipaddr2:  <%Request.Form("ci_shipaddr2")%>
<br>
ci_shipcity:  <%Request.Form("ci_shipcity")%>
<br>
ci_shipstate:  <%Request.Form("ci_shipstate")%>
<br>
ci_shipzip:  <%Request.Form("ci_shipzip")%>
<br>
ci_shipcountry:  <%Request.Form("ci_shipcountry")%>
<br>
<br>
ci_orderid: <%Request.Form("ci_orderid")%>
</p>
<INPUT type=submit value="Submit This Post">
</form>
</body>
</html>

Last edited by chrishirst; 11-22-2010 at 04:21 PM..
JOEL0903 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-22-2010, 04:39 PM Re: Problem reading data sent via post method from another site
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,336
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
it's the code that CREATES the POST data we need to debug
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-22-2010, 05:05 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
I have included the entire asp page (minus the code for the includes). The only part of the page that will be pertinent is the form "frmFastCharge". This form is submitted to fastcharge for processing and they then display either an approved or denied page, either their standard page, or one supplied by my site (controlled by the input fields on my form with the name Accept and Decline). The page in my original post is AcceptRedirector.asp.

The process is this: the form is filled out and submitted to fastcharge via a post. They process and approve or decline the card. They then send the user to the correct page (this part works). I can view the post data on AcceptRedirector.asp and see the post data (the string I input in the original post). The code itself, I cannot access as it belongs to FastCharge (I have sent them an e-mail request today, but have not yet heard back).

Last edited by JOEL0903; 11-23-2010 at 02:38 PM..
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-22-2010, 05:08 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
Code:
<%@ Language=VBScript %>
<% option explicit
Response.Buffer = True
'set referredby cookie for session from caraccessories.com so that this page always thinks it came from the order order page.
'if request("referredbycookie") <> "" Then
' Session("referredbycookie") = request("referredbycookie")
'End If
%>
<!--#include file="error_trap.asp"-->
<!--#include file="sfLib/incDesign.asp"-->
<!--#include file="SFLib/incAE.asp"-->
<!--#include file="pageheader.asp"-->
<%
Const vDebug = 0
 
Dim sSql,sEmail,iOrderID,rsMyOrders, sPassword, iAuthenticate, bLoggedIn, sCondition, sPaymentMethod, sPaymentList
Dim sProdID,iQuantity,iShip,sTotalPrice,strProdID,intQuantity,rstAdmin,sTotalCost,blnFree, iFreeShip, dbTotalPrice
' initially false
bLoggedIn = false
iShip = 0
sSQL = "SELECT * FROM sfTmpOrderDetails WHERE odrdttmpShipping >= 1 AND odrdttmpSessionID = " & Session("SessionID")
Set rsMyOrders = Server.CreateObject("ADODB.RecordSet")
Set rstAdmin = Server.CreateObject("ADODB.RecordSet")
rsMyOrders.Open sSQL, cnn, adOpenForwardOnly, adLockReadOnly, adCmdText
rstAdmin.Open "sfAdmin", cnn, adOpenForwardOnly, adLockReadOnly, adCmdTable
 
 
If Request.QueryString("Persist") = 1 then '#245
sTotalPrice= Session("persistTotalPrice")
else
sTotalPrice =Request.Form("TotalPrice")
end if
Session("persistTotalPrice") = sTotalPrice
If NOT rsMyOrders.EOF = True AND NOT rsMyOrders.EOF = true Then
rsMyOrders.MoveFirst
iShip = 0
Do While NOT rsMyOrders.EOF
iShip = iShip + rsMyOrders.Fields("odrdttmpShipping")
rsMyOrders.MoveNext
loop
End If
blnFree =False
if iShip <> 0 then
iFreeShip = rstAdmin.Fields("adminFreeShippingIsActive")
if (cdbl(sTotalPrice) > cdbl(rstAdmin.Fields("adminFreeShippingAmount")) AND iFreeShip = "1") then
blnFree =True
end if
elseif iShip = 0 then
blnFree =True
else
blnFree =False
end if
<!-- Fields passed from order form and via database tables-->
Dim ref, sessID
ref = Cstr(Request.form("referrer"))
'These should all be obtained from global space such as a global variable or database entry, NOT from the referrer
sessID = Session("SessionID")
 
if ref= "" Then
ref = "Empty"
end if
if sessID = "" Then
sessID = "Empty"
end if
 
rsMyOrders.Close
rstAdmin.Close
set rstAdmin =nothing
set rsMyOrders = nothing
'Check the total price from the database and check it against the total price passed in. Use the greater amount
'This is because if the referring page is NOT the order page, then sTotal price will not be passed in and will be 0.00
dbTotalPrice = CCur(getDataFromDB)
if dbTotalPrice > sTotalPrice Then
sTototalPrice = dbTotalPrice
end if
 
if dbTotalPrice = 0 then
'Cart is empty
end if
'-------------------------------------------------------
' See if session is repeating, if so, give new id to use
'-------------------------------------------------------
If sessID = Request.Cookies("EndSession") Then
bLoggedIn = false
End If
'************************************** end of top ASP code **************************************
%>
HTML Code:
<!--#include file="bodyopen_divopen_main.html"-->
<!--#include file="div_topsection.html"-->
<!-- Add the page main content here -->
<div id="contentwrapper">
<div id="contentcolumn">
<div class="innertubep">
<!--#include file="rotatingstrap.html"-->
 
<div id="page_message_top">
<p class="titleBold">If you have questions please contact us using our Toll Free Number: <b>(800) 761-2005</b></p>
</div>
<div class="row">
<FORM name = "frmFastcharge" action="https://trans.secure-fastcharge.com/cgi-bin/process.cgi" onsubmit="return validateForm(this);" method=post>
<!-- Fields passed from order form via request.form -->
<input name=sessionID type=hidden value=<%=sessID%> >
<input name=referrer type=hidden value=<%=ref%>
<!-- not currently used -->
<!-- <input name=custId type=hidden> -->
<!-- Merchant account related fields -->
<INPUT name="action" type=hidden value="ns_quicksale_cc">
<INPUT name="usepost" type=hidden value=1>
<input name="merchantpin" type=hidden value="FCQUF">
<input name="pin_num" type=hidden value="@merchantpin@">
<INPUT maxLength=5 name="acctid" size=5 type=hidden value=test0>
<INPUT maxLength=5 name="subid" size=5 type=hidden value=tony2>
<input name="amount" type=hidden value=<%=stotalPrice%> >
<!-- There are sometimes issues with redirecting to a http url incorrectly being sent as https. Use redirector pages to resolve -->
<INPUT name=Accepturl type=hidden value=http://www.caraccessories.com/ssl/ApprovedRedirector.asp>
<INPUT name=Declineurl type=hidden value=http://www.caraccessories.com/ssl/DeniedRedirector.asp>
<!-- computed fields for e-mail and values that are computed by the system (such as IP Address of the client) -->
<input name=remote_addr type=hidden value=remote_addr>
<input name=ipaddr type=hidden value="@remote_addr@">
<input name=emailto type=hidden value="@CI_EMAIL@">
<input name=emailfrom type=hidden value="donotreply@caraccessories.com">
<INPUT name=emailsubject type=hidden value="Transaction Receipt">
<input type="hidden" name="emailtext" value="Transaction Receipt for: @CI_NAME@
Customer Email: @CI_EMAIL@
Customer Phone: @CI_PHONE@
IP Address: @CI_IPADDR@
Customer Billing Address: @CI_BILLADDR1@
Billing Address 2: @CI_BILLADDR2@
Billing City: @CI_BILLCITY@
Billing State: @CI_BILLSTATE@
Billing Zip: @CI_BILLZIP@
Billing Country: @CI_BILLCOUNTRY@
Time of Transaction: @TIME@
Authorization Number: @AUTHNO@
Order ID: @ORDERID@
Amount of Purchase: @AMOUNT@">
<p>
<table border="0" width="90%">
<tr>
<td colspan=2 bgcolor="#dddddd" width="548" align="center"><h2>CarAccessories.com Secure e-Shop - Check Out</h2></td>
</tr>
<tr>
<td style="width:30%;"></td>
<td style="width:70%l"><span style="color:purple;">&nbsp;All fields on this form are required in order to checkout.</span></td>
</tr>
<tr>
<td style="width:30%;" bgcolor="#dddddd"><b>Name on Credit Card:</b></td>
<td style="width:70%;" >&nbsp;<input type=text name="ccname" value="" size="27"></td>
</tr>
<tr>
<td style="width:30%;" bgcolor="#dddddd"><b>Card Number:</b></td>
<td style="width:70%;" >&nbsp;<input type=text name="ccnum" value="" size="24"></td>
</tr>
<tr>
<td style="width:30%;" bgcolor="#dddddd"><b>Expiration Date:</b></td>
<td style="width:70%;">&nbsp;
<SELECT name="Expmon" size=1>
<OPTION selected value=12>1</OPTION>
<OPTION value=2>2</OPTION>
<OPTION value=3>3</OPTION>
<OPTION value=4>4</OPTION>
<OPTION value=5>5</OPTION>
<OPTION value=6>6</OPTION>
<OPTION value=7>7</OPTION>
<OPTION value=8>8</OPTION>
<OPTION value=9>9</OPTION>
<OPTION value=10>10</OPTION>
<OPTION value=11>11</OPTION>
<OPTION value=12>12</OPTION>
</SELECT>
Month &nbsp;&nbsp;&nbsp;&nbsp;
<SELECT name="Expyear" size=1>
<OPTION selected value=2010>2010</OPTION>
<OPTION value=2011>2011</OPTION>
<OPTION value=2012>2012</OPTION>
<OPTION value=2013>2013</OPTION>
<OPTION value=2014>2014</OPTION>
<OPTION value=2015>2015</OPTION>
<OPTION value=2016>2016</OPTION>
<OPTION value=2017>2017</OPTION>
<OPTION value=2018>2018</OPTION>
<OPTION value=2019>2019</OPTION>
<OPTION value=2020>2020</OPTION>
<OPTION value=2021>2021</OPTION>
<OPTION value=2022>2022</OPTION>
<OPTION value=2023>2023</OPTION>
<OPTION value=2024>2024</OPTION>
<OPTION value=2025>2025</OPTION>
<OPTION value=2025>2026</OPTION>
<OPTION value=2025>2027</OPTION>
<OPTION value=2025>2028</OPTION>
<OPTION value=2025>2029</OPTION>
<OPTION value=2025>2030</OPTION>
</SELECT>
Year</TD>
</tr>
<tr>
<td colspan="2" style="width:100%;">&nbsp;</td>
</tr>
<tr>
<td style="width:30%;" bgcolor="#dddddd"><b>Amount:</b></td>
<td style="width:70%;">&nbsp;<%=sTotalPrice%></td>
</tr>
<tr>
<td colspan="2" style="width:100%;">&nbsp;</td>
</tr>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>E-mail Address:</b></TD>
<TD style="width:70%;" >&nbsp;<INPUT name="ci_email" size="28"></TD></TR>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Billing Address 1:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_billaddr1" size="34"></TD></TR>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Billing Address 2:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_billaddr2" size="34"></TD></TR>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Billing City, State, Zip Code:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_billcity" size="22">, <INPUT name="ci_billstate" size="6">&nbsp;<INPUT name="ci_billzip" size="13"></TD>
</TR>
<tr><td colspan="2" style="width:100%;">&nbsp;</td></tr>
<tr><td colspan="2" style="width:100%; text-align:center">
<!--<button type="button" value="Copy Billing to Shipping" name="copyToShipping" onclick="copyToShipping();" >Copy Billing to Shipping</button>-->
</td></tr>
<tr><td colspan="2" style="width:100%;">&nbsp;</td></tr>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Shipping Address 1:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_shipaddr1" size="34"></TD></TR>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Shipping Address 2:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_shipaddr2" size="34"></TD></TR>
<TR>
<TD style="width:30%;" bgcolor="#dddddd"><b>Shipping City, State, Zip Code:</b></TD>
<TD style="width:70%;">&nbsp;<INPUT name="ci_shipcity" size="22">, <INPUT name="ci_shipstate" size="6">&nbsp;<INPUT name="ci_shipzip" size="13"></TD>
</TR>
<tr><td colspan="2">&nbsp;</td></tr>
<tr>
<td colspan="2" valign="middle" align="center"><INPUT type=submit value="Complete Checkout"></td>
</tr>
</table>
</form>
<!--
<div id="page_message_bottom">
<p class="titleBold">Our checkout page is currently down for maintenance. Please bear with us as we upgrade and shorten our checkout process to better serve our customers.</p>
<p>Please contact us at our Toll Free Number and we will expedite your order: <b>(800) 761-2005</b></p>
</div>
-->
<!--
add code to this page to allow for different billing and shipping addresses.
use a checkbox and then if the box is checked, show the fields for shipping address
-->
</div>
<div id="orderdetailsoutput" style="display:inline;">
</div>
</div>
</div>
</div>
<!-- End of page main content -->
<!--#include file="div_leftcolumn.html"-->
<!--#include file="rightcolumn.html"-->
<!--#include file="div_footer.html"-->
<!--#include file="pagefooter.html"-->

Last edited by chrishirst; 11-22-2010 at 05:19 PM..
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-22-2010, 05:36 PM Re: Problem reading data sent via post method from another site
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,336
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
How are you printing the returned data?
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-22-2010, 05:54 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
Code:
<p>
pin_num: <% Response.write(Request.Form("pin_num"))%>
<br>
amount: <%Response.write(Request.Form("amount"))%>
<br>
remote_addr: <%Response.writeRequest.Form("remote_addr"))%>
<br>
acctid: <%Response.write(Request.Form("acctid"))%>
<br>
ipaddr: <%Response.write(Request.Form("ipaddr"))%>
<br>
ci_email: <%Response.writeRequest.Form("ci_email"))%>
<br>
ci_phone: <%Response.write(Request.Form("ci_phone"))%>
<br>
ci_billaddr: <%Response.write(Request.Form("ci_billaddr1"))%>
<br>
ci_billaddr2: <%Response.write(Request.Form("ci_billaddr2"))%>
<br>
cibillcity: <%Response.write(Request.Form("ci_billcity"))%>
<br>
ci_billstate: <%Response.write(Request.Form("ci_billstate"))%>
<br>
ci_billzip: <%Response.write(Request.Form("ci_billzip"))%>
<br>
ci_billcountry: <%Response.write(Request.Form("ci_billcountry"))%>
<br>
<br>
 <%response.write(Request.Form("ci_shipaddr1"))%>
<br>
 <%response.write(Request.Form("ci_shipaddr2"))%>
<br>
 <%response.write(Request.Form("ci_shipcity"))%>
<br>
 <%response.write(Request.Form("ci_shipstate"))%>
<br>
 <%response.write(Request.Form("ci_shipzip"))%>
<br>
 <%response.write(Request.Form("ci_shipcountry"))%>
<br>
<br>
ci_orderid: <%response.write(Request.Form("ci_orderid"))%>
</p>

Last edited by chrishirst; 11-22-2010 at 06:05 PM..
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-22-2010, 06:03 PM Re: Problem reading data sent via post method from another site
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,336
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
So if it prints the data to the page what exactly IS the problem???
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-22-2010, 06:20 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
The problem is that data ISN'T being printed in the Response.write code. They are all blank. If I look at the POST data, I can see the values, so I know they are being passed back to my page. The issue is with accessing them. For example, Response.write(Request.Form("Accepted")) will write nothing to the browser. Yet the data has been posted to the page, as can be seen in the POST data below:

Accepted=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3 AU&ACCOUNTNUMBER=************5454&authcode=TEST&A u thNo=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3AU&h istoryid=169538915&orderid=127359668&recurid=0&ref . . .


This is not, per se, an issue with the response.write itself, I don't think, but with accessing the posted values. I can't use a "GET", or rather, I can, but the processor still posts the data back to my page, even if I send it to them via get, which I would prefer not to do anyway.
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-22-2010, 06:24 PM Re: Problem reading data sent via post method from another site
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,336
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Ok I'll make it simpler


HOW did you print this
Quote:
Accepted=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3 AU&ACCOUNTNUMBER=************5454&authcode=TEST&A u thNo=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3AU&h istoryid=169538915&orderid=127359668&recurid=0&ref . . .
Try not to forget WE are trying to debug YOUR problem, only YOU can tell us EXACTLY what is happening!
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-22-2010, 06:37 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
From my original post:

If I view the post data (easily done by creating an error in the ASP code), I see this:

Accepted=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3 AU&ACCOUNTNUMBER=************5454&authcode=TEST&A u thNo=AVSSALE%3ATEST%3A%3A%3A169538915%3AN%3A%3AU&h istoryid=169538915&orderid=127359668&recurid=0&ref . . .


Simply put, I forced the page to error out by using an invalid asp tag on the page to cause a 500.100 error on the server, like so:

<%fdsaflkjdsalfjdfjldsajfldsajfkillllllllmeeeeeeed umbleydore%>
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-22-2010, 06:52 PM Re: Problem reading data sent via post method from another site
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,336
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
So this the debug data on the 500 error page?
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-22-2010, 07:22 PM Re: Problem reading data sent via post method from another site
Novice Talker

Posts: 7
Name: Joel
Trades: 0
correct
JOEL0903 is offline
Reply With Quote
View Public Profile
 
Old 11-25-2010, 02:34 PM Re: Problem reading data sent via post method from another site
Banned

Posts: 1
Name: AndyJones
Trades: 0
Page 2 stems from the fact that the script and show one or more charts generated using an external application notes on a page and the back-end database. This page is also another form of options to re-produce charts with new options
andisjones is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Problem reading data sent via post method from another site
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.43028 seconds with 12 queries