I'm trying to set the HTML of an Iframe at runtime, from code behind.
In my aspx page i have:
<asp:Button ID="btnChange" runat="server" Text="Change iframe content"
onclick="btnChange_Click" />
<br />
<iframe id="myIframe" runat="server" />
in the code behind:
protected void btnChange_Click(object sender, EventArgs e)
{
myIfr...
can someone give a sample implementation of 3d secure for an ecommerce application?
...
We have a commerce site we're attempting to get 3D Secure (Verified by VISA/Mastercard Securecode) set up with.
We are using DataCash as our payment provider.
We are seeing the following issue:
Some cards that are enrolled in these schemes are being successfully shown the 3D Secure pages, others are failing, and talking to the issuing...