Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/variables/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
vb.net网络浏览器可以';t设定值_Vb.net_Webbrowser Control - Fatal编程技术网

vb.net网络浏览器可以';t设定值

vb.net网络浏览器可以';t设定值,vb.net,webbrowser-control,Vb.net,Webbrowser Control,这是我的HTML代码 <input id="account_password" class="textInput" name="account.password" type="password" maxlength="30" autocomplete="off" placeholder="Minimum of 8 characters"> 结果 只是占位符已更改+没有passchar“****”如果您只是在密码文本框中键入,它是否显示*s?是的,它显示为***您是否考虑改为通过j

这是我的HTML代码

<input id="account_password" class="textInput" name="account.password" type="password" maxlength="30" autocomplete="off" placeholder="Minimum of 8 characters">
结果


只是占位符已更改+没有passchar“****”

如果您只是在密码文本框中键入,它是否显示
*
s?是的,它显示为
***
您是否考虑改为通过javascript设置它?您知道可以从web浏览器控件以编程方式插入javascript。如果您只需在密码文本框中键入,它是否会显示
*
s?是的,它显示为
***
s您考虑过改为通过javascript设置它吗?您知道可以通过web浏览器控件以编程方式注入javascript。
WebBrowser1.Document.GetElementById("account_password").SetAttribute("value", "Kemo2011")