问题标签 [passwordbox]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
wpf - 来自水印文本框的 WPF 水印密码框
我正在使用WPF 中的 Watermark TextBox 中的 Watermark 文本框
如何将其应用于 PasswordBox?
c# - C# 如何从 PasswordBox 获取文本值?
我有一个PasswordBox
. 输入完成后如何获取输入值PasswordBox
?
mvvm - MVVM 绑定密码
我正在重构我的应用程序以实现 MVVM 设计,我遇到了我的第一个问题......
编译器不允许我绑定到 PasswordBox 控件的 Password 属性。
任何人都有任何想法/建议。
html - 如何固定密码输入字段的大小?
我的html代码是
但问题是,密码文本框长度在 IE 中变得不同,这意味着uid
大小是20
但pass
大小是17
.
android - Android webview问题上的记住密码弹出窗口
这是一个非常直接的问题,我需要检测默认的记住密码弹出窗口何时在 Android Webview 上打开(所以我可以确保我没有用任何其他组件覆盖它,或者至少把它放在前面)
非常感谢,这个社区对我很有帮助。
php - 如何让一个复选框控制两个密码字段?
我以稍微复杂的形式使用上面的代码。
我在表单上有两个单独的“密码”字段。使用当前代码,我可以让第一个密码字段显示选中复选框时键入的字符。
此外,如果用户在启用大写锁定的情况下键入,该代码会通知用户。
我希望两个密码字段都表现出相同的行为,而不仅仅是第一个字段。不幸的是,我不知道如何做到这一点。
谢谢您的帮助。
编辑:
使用以下代码可能更容易找到一个简单的解决方案。我愿意使用任何一个。
c# - C# - compare two SecureStrings for equality
I have a WPF application with two PasswordBoxes, one for the password and another for the password to be entered a second time for confirmation purposes. I was wanting to use PasswordBox.SecurePassword
to get the SecureString
of the password, but I need to be able to compare the contents of the two PasswordBoxes to ensure equality before I accept the password. However, two identical SecureStrings are not considered equal:
I was thinking comparing the Password
property of the PasswordBoxes would defeat the point of accessing only SecurePassword
because I'd be reading the plain-text password. What should I do to compare the two passwords without sacrificing security?
Edit: based on this question, I'm checking out this blog post about "using the Marshal class to convert the SecureString to ANSI or Unicode or a BSTR", then maybe I can compare those.
windows-phone-7 - 如何更改 PasswordBox 的屏幕键盘
我有一个盒子,我想输入一个只有数字的密码(如 ATM 卡 PIN),最好的方法是什么?
要求:
- 密码(带有隐藏数字)
- 键入数字作为默认(仅?)键盘
我试过的:
我认为 InputScopes 将是要走的路,但我无法在密码框上设置输入范围。我什至尝试将密码 InputScope 放在普通的 TextBox 上,但这并没有掩盖文本框中字符的外观。建议?
html - ajax中的密码表单字段
什么是在密码字段旁边显示颜色的 ajax/javascript 插件。所以每个密码都有自己的颜色组合。
jquery - 在 MVC Razor 视图中实现 Jquery.ShowPassword
对我来说发生的所有事情都是密码框在复选框被选中时消失并重新出现。
剃刀视图中的代码:
我在底部的@renderparttail 中有 Javascript 函数:
jquery.showpassword-1.0.js 与其他脚本一起包含在视图顶部:
如果你从来没有见过 jquery.showpassword-1.0.js 这里是代码:
这是它应该如何工作的演示: http: //sandbox.unwrongest.com/forms/jquery.showpassword.html
它为我做的只是让密码文本框在第一次单击复选框时消失,然后在第二次单击时重新出现,但在第三次单击时,密码* ** * ** * *消失,不显示任何文本,但文本框仍然存在。
我已经在 .aspx 视图上使用它没有问题,我该如何使用 Razor 视图?