Your code worked fine... But my numbers are not fixed.... So, I used onChange() and passed the value...
Here is the code :
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function Redirect() {
var no = document.getElementById("number");
window.location = "DisplayValue.aspx?No=" + no.value;
}
</script>
</head>
<body>
Enter Number: <input type="text" id="number" onchange="Redirect()" />
</body>
</html>
My Problem Solved!!!
Thanks for clicking me... : -)