如何检索信用卡类型的值
Posted
技术标签:
【中文标题】如何检索信用卡类型的值【英文标题】:How to retrieve the value of the credit card type 【发布时间】:2013-02-18 18:35:14 【问题描述】:我需要做的是客户验证。我在后面的代码中的代码需要同时查看信用卡类型和信用卡号。 我不知道该怎么做。
<asp:DropDownList ID="ddlCCType" runat="server">
<asp:ListItem Value="None">Select Card Type</asp:ListItem>
<asp:ListItem Value="Visa">Visa</asp:ListItem>
<asp:ListItem Value="Amex">Amex</asp:ListItem>
<asp:ListItem Value="Mastercard">Mastercard</asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="txtCardNum" runat="server" Width="200px"></asp:TextBox>
<asp:CustomValidator runat="server" id="cusCustom" controltovalidate="txtCardNum" onservervalidate="txtCard_ServerValidate" errormessage="The credit card is incorrect." />
我有下面的代码,但不知道。 e.Value 只会返回信用卡号的值。
protected void txtCard_ServerValidate(object sender, ServerValidateEventArgs e)
if(e.Value.Length == 8)
......
e.IsValid = true;
else
e.IsValid = false;
【问题讨论】:
***.com/questions/1308194/… ***.com/questions/72768/… 对我来说都是正确的...... ^^ 但这可能不是使用的最佳解决方案...... 罗伯特不是这个意思,他不想验证这是一个正确的号码,他想从 txtCardNum 中检索信用卡号码。 【参考方案1】:这个想法是根据卡号的范围来验证卡号的品牌。你懂的: - Visa卡以4开头 - AmEx 卡以 37 开头(或 34,不确定了) - 万事达卡以 5 开头
如果您更改列表中项目的值以反映卡范围,您可以验证卡号是否以所选项目的值开头。
谢尔盖
【讨论】:
Serge,我如何检索信用卡的价值和信用卡类型。这是我的问题。谢谢以上是关于如何检索信用卡类型的值的主要内容,如果未能解决你的问题,请参考以下文章