如何防止浏览器缓存信用卡号字段

时间:2010-04-26 16:41:09

标签: asp.net credit-card

我在网页上有一个包含信用卡号的输入字段。阻止浏览器缓存此值的最佳方法是什么?

任何解决方案都需要适用于大量浏览器。

2 个答案:

答案 0 :(得分:8)

将属性autocomplete="off"放入html表单。 E.g。

<form name="form1" id="form1" method="post" autocomplete="off"
  action="http://www.example.com/form.cgi">
[...]
</form>

请参阅此page

答案 1 :(得分:4)

<asp:TextBox Runat="server" ID="Textbox1" autocomplete="off"></asp:TextBox>