智者不为愚者谋,勇者不为怯者死。这篇文章主要讲述WebApplication ASP.Net C#。取消屏蔽文本框,也称为显示密码相关的知识,希望能为你提供帮助。
我正在尝试在我的文本框 - 密码下面创建一个“显示密码”复选框,以取消屏蔽txtpassword并显示字符。
protected void chkUnmask_CheckedChanged(object sender, EventArgs e)
{
if (chkUnmask.Checked == true)
{
txtPassword.TextMode = TextBoxMode.Password;
}
else
{
txtPassword.TextMode = TextBoxMode.Password;
}
}
【WebApplication ASP.Net C#。取消屏蔽文本框,也称为显示密码】每次复选框更改为选中和取消选中时,我都会使用If-Else条件来更改文本框的行为。它适用于WindowsFormApp C#,但在WebApp C#ASP.net没有,我试图重启视觉工作室和我的笔记本电脑,希望它只是一个错误,但仍然无法工作..我想知道我的编码是否错误。
答案如果条件都是如此,结果将如何不同
txtPassword.TextMode = TextBoxMode.Password;
}
You need to change the TextBox mode for one of the conditions // I think you need to set break points and check if this line is being triggered
TextBox1.TextMode = TextBoxMode.SingleLine;
// you can try this code which works fine. Add a button, and a textbox and set its textmode to Password. Type something the then click the button.
protected void Button1_Click1(object sender, EventArgs e)
{
TextBox1.TextMode = TextBoxMode.SingleLine;
}
推荐阅读
- Dockerized webapp - 热重新加载
- 解决Azure Web App 500内部服务器错误超时问题并对其进行故障排除
- 如何在不使用webView的情况下在Android应用程序中显示Web内容
- Webapp地址与.war文件名不同
- 使用Google Apps脚本Web应用添加到Google表格
- 对于任何不匹配的URL,Jetty ConstraintMapping()
- eclipse webapp中的pom.xml文件出错
- 如何在webapp中创建子域用户帐户
- webapp2 - 如何反转模板中的URL()