I have this function that I use to send parameters through QueryString:
<script>
function Enviar(){
var string_request;
usuario = document.getElementById('Usuario').value;
password = document.getElementById('Password').value;
string_request = "Default.asp?Usuario=" + usuario + "&Password=" + password;
window.open(string_request);
}
</script>
The problem is that when entering the Default.asp web page, the user information and password are displayed
Does anyone know in any way to hide this information?