I have put the following two lines in my aspx page to show a background image and logo.
<input id="x_Background_URL"type="hidden"name="x_Background_URL"
value="https://secure.authorize.net/mgraphics/logo_xxxx.jpg"/>
<inputid="x_logo_url"type="hidden"name="x_logo_url"
value="https://secure.authorize.net/mgraphics/logo_xxxx.gif"/>
When I run the payment form, the logo shows up fine but the background does not show at all. I have verified that the link is correct, the image is there.
Anyone have a suggestion?
Thanks
02-09-2012 08:41 AM
It might be a bug in authorize.net code. But it is removing the ":" on the https://
Workaround is just have
<input id="x_Background_URL" type="hidden" name="x_Background_URL"
02-09-2012 09:23 AM
Thanks! That worked.
-Jennifer
02-09-2012 10:21 AM