|
|
|
สอบถามครับ Texbox มันโชว password ที่เคยพิมพ์ไปแล้วแก้ไขยังไงครับผม |
|
|
|
|
|
|
|
Code (VB.NET)
txtbox1.Clear()
'หรือ
txtbox1.Text = " "
เอาไปใส่ในปุ่ม LogIn พอ LogIn เสร็จก็ให้มันลบเลยเวลากลับมาดูอีกก็ไม่มีแล้วแบบนี้ได้ไหมครับ
|
|
|
|
|
Date :
2016-09-20 18:53:21 |
By :
PEBBLE |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าไปสนใจมันเลยครับ ปล่อยให้เป็นภาระของผู้ใช้บ้าง ก็ได้ครับ
มันติดปัญหาที่ Browser ด้วย property มันแก้ไขต่างกัน ก็ต้องว่ากันไปตามแต่ละยี่ห้อ
และถ้าผู้ใช้ ไม่แก้ไขอยากให้เป็นแบบนั้น ก็ช่วยอะไรไม่่ได้ มันเป็นปัญหาบนเครื่อง client
สำหรับผู้เขียนแก้ได้ด้วย autocomplete=off
แต่ก็อย่างที่บอกครับ ต้องแแก้ที่ property ของ browser ด้วย
|
|
|
|
|
Date :
2016-09-20 20:25:24 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับผม
|
|
|
|
|
Date :
2016-09-21 15:21:02 |
By :
yatard |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันอยู่ที่ browser ที่ใช้นะครับ แต่ถ้า ไม่ต้องการให้โชว์ก็ทำการเคลียร์อย่างที่ PEBBLE บอกครับ
|
|
|
|
|
Date :
2016-09-22 04:26:43 |
By :
bigsuntat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Sourcecode ด้านล่างเหมาะสำหรับคนที่มี "กึ๋นเพียงพอ"
Code (XML)
<script type="text/javascript">
function preventPasswordSaved() {
var fakePwd = document.getElementById('txtPwd').value;
var fuckPwd = document.getElementById('hdfPwd').value;
var swap = fuckPwd + fakePwd.substr(fakePwd.lastIndexOf('*') + 1);
if (fakePwd.length < fuckPwd.length) {
swap = fuckPwd.substr(0, fakePwd.length);
}
document.getElementById('hdfPwd').value = swap;
document.getElementById('txtPwd').value = new Array(1500).join('*').substr(0, swap.length);
}
//JQuery AJAX
function execAjax(url, data, type, successFunc, errorFunc) {
return $.ajax({
type: type, /*POST/GET*/
url: url,
data: data, /* Parameter jQuery("[attribute^='value']" )*/
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if (data.hasOwnProperty("d")) {
successFunc(data.d);
} else {
successFunc(data);
}
},
error: function (a, b, c) {
errorFunc(a, b, c);
}
});
}
//MS AJAX
function execMSAjax(wsName, wsMethodName, successFunc, errorFunc) {
if (typeof wsNameSpace === 'undefined' || wsNameSpace === null) {// variable is undefined or null
wsNameSpace = "หอย_ERP"; //wsNameSpace Set value in Master Page
}
return eval(wsNameSpace + '.' + wsName + '.' + wsMethodName + '(' + successFunc + ', ' + errorFunc + ')');
}
</script>
<body>
<form id="frmLogin" name="frmLogin">
<input name="txtPw" id="txtPwd" type="text" onkeyup="preventPasswordSaved();" autocomplete="off" />
<input name="hdfPwd" id="hdfPwd" type="hidden" />
</form>
</body>
|
|
|
|
|
Date :
2016-09-22 09:32:48 |
By :
หน้าฮี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|